Skip to content

Commit

Permalink
Merge pull request #283 from chromaui/add-isMultiple-for-project-toke…
Browse files Browse the repository at this point in the history
…n-flag

add explicit allow for multiple project-tokens (last will be used)
  • Loading branch information
ndelangen committed Feb 18, 2021
2 parents 2a070af + b4c13e4 commit 42d4b61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/lib/parseArgs.js
Expand Up @@ -38,8 +38,8 @@ export default function parseArgs(argv) {
booleanDefault: undefined,
flags: {
// Required options
projectToken: { type: 'string', alias: 't' },
appCode: { type: 'string', alias: 'a' }, // for backwards compatibility
projectToken: { type: 'string', alias: 't', isMultiple: true },
appCode: { type: 'string', alias: 'a', isMultiple: true }, // for backwards compatibility

// Storybook options
buildScriptName: { type: 'string', alias: 'b' },
Expand Down

0 comments on commit 42d4b61

Please sign in to comment.