From b4c13e4f621f428c7c71a70f840d8cb8af2fbd8c Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Wed, 17 Feb 2021 15:03:36 +0100 Subject: [PATCH] add explicit allow for multiple project-tokens (last will be used) --- bin/lib/parseArgs.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/lib/parseArgs.js b/bin/lib/parseArgs.js index f5efb8c17..f7b8f7682 100644 --- a/bin/lib/parseArgs.js +++ b/bin/lib/parseArgs.js @@ -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' },