mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
ADD --yes option to CLI init command && USE --yes command to skip question where possible
This commit is contained in:
parent
c7c49c8b46
commit
1c1b22817b
@ -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
|
||||
|
@ -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([
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user