Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/program.js
Original file line number Diff line number Diff line change
Expand Up @@ -484,18 +484,6 @@ Example: $0 --help run.
default: true,
type: 'boolean',
},
'filename': {
alias: 'n',
describe: 'Name of the created extension package file.',
default: undefined,
normalize: false,
demandOption: false,
requiresArg: true,
type: 'string',
coerce: throwUsageErrorIfArray(
'Multiple --filename/-n option are not allowed'
),
},
});

program
Expand All @@ -507,6 +495,18 @@ Example: $0 --help run.
describe: 'Watch for file changes and re-build as needed',
type: 'boolean',
},
'filename': {
alias: 'n',
describe: 'Name of the created extension package file.',
default: undefined,
normalize: false,
demandOption: false,
requiresArg: true,
type: 'string',
coerce: throwUsageErrorIfArray(
'Multiple --filename/-n option are not allowed'
),
},
'overwrite-dest': {
alias: 'o',
describe: 'Overwrite destination package if it exists.',
Expand Down