Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaMan123 committed Jun 11, 2022
1 parent a978def commit c6bb365
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -366,10 +366,10 @@ website
program
.command('transform')
.description('transforms files into es6')
.option('-o, --overwrite')
.option('-x, --exports')
.option('-i, --index')
.option('--ts')
.option('-o, --overwrite', 'overwrite exisitng files')
.option('-x, --exports', 'use exports')
.option('-i, --index', 'create index files')
.option('--ts', 'transform into typescript')
.action(({ overwrite, exports, index, ts } = {}) => {
require('./transform_file').convert({
overwriteExisitingFiles: overwrite,
Expand Down

0 comments on commit c6bb365

Please sign in to comment.