diff --git a/lib/cli/bin/generate.js b/lib/cli/bin/generate.js index 52ffd8c7477..070d868d140 100644 --- a/lib/cli/bin/generate.js +++ b/lib/cli/bin/generate.js @@ -22,6 +22,7 @@ if (process.argv[1].includes('getstorybook')) { .option('-N --use-npm', 'Use npm to install deps') .option('-p --parser ', 'jscodeshift parser') .option('-t --type ', 'Add Storybook for a specific project type') + .option('-y --yes', 'Answer yes to all prompts') .action(options => initiate(options, pkg)); program diff --git a/lib/cli/lib/initiate.js b/lib/cli/lib/initiate.js index 0d749402199..2991f7e038e 100644 --- a/lib/cli/lib/initiate.js +++ b/lib/cli/lib/initiate.js @@ -78,16 +78,18 @@ const installStorybook = (projectType, options) => { .then(end); case types.REACT_NATIVE: { - return inquirer - .prompt([ - { - type: 'confirm', - name: 'server', - message: - 'Do you want to install dependencies necessary to run storybook server? You can manually do it later by install @storybook/react-native-server', - default: false, - }, - ]) + return (options.yes + ? Promise.resolve() + : inquirer.prompt([ + { + type: 'confirm', + name: 'server', + message: + 'Do you want to install dependencies necessary to run storybook server? You can manually do it later by install @storybook/react-native-server', + default: false, + }, + ]) + ) .then(({ server }) => reactNativeGenerator(npmOptions, server)) .then(commandLog('Adding storybook support to your "React Native" app')) .then(end) @@ -186,14 +188,16 @@ const installStorybook = (projectType, options) => { }; const projectTypeInquirer = async options => { - const manualAnswer = await inquirer.prompt([ - { - type: 'confirm', - name: 'manual', - message: 'Do you want to manually choose a Storybook project type to install?', - default: false, - }, - ]); + const manualAnswer = options.yes + ? true + : await inquirer.prompt([ + { + type: 'confirm', + name: 'manual', + message: 'Do you want to manually choose a Storybook project type to install?', + default: false, + }, + ]); if (manualAnswer.manual) { const frameworkAnswer = await inquirer.prompt([ diff --git a/lib/cli/test/run_tests.sh b/lib/cli/test/run_tests.sh index 951b50c37f7..70b5e42e2d7 100755 --- a/lib/cli/test/run_tests.sh +++ b/lib/cli/test/run_tests.sh @@ -38,7 +38,7 @@ do cd $dir # run @storybook/cli - ../../../bin/index.js init --skip-install + ../../../bin/index.js init --skip-install --yes cd .. done