ADD --yes option to CLI init command && USE --yes command to skip question where possible

This commit is contained in:
Norbert de Langen 2019-02-09 18:20:24 +01:00
parent c7c49c8b46
commit 1c1b22817b
3 changed files with 24 additions and 19 deletions

View File

@ -22,6 +22,7 @@ if (process.argv[1].includes('getstorybook')) {
.option('-N --use-npm', 'Use npm to install deps')
.option('-p --parser <babel | babylon | flow>', 'jscodeshift parser')
.option('-t --type <type>', 'Add Storybook for a specific project type')
.option('-y --yes', 'Answer yes to all prompts')
.action(options => initiate(options, pkg));
program

View File

@ -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([

View File

@ -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