mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
78 lines
2.6 KiB
JavaScript
78 lines
2.6 KiB
JavaScript
import program from 'commander';
|
|
import chalk from 'chalk';
|
|
import envinfo from 'envinfo';
|
|
import pkg from '../package.json';
|
|
import initiate from '../lib/initiate';
|
|
import { codeLog } from '../lib/helpers';
|
|
import add from '../lib/add';
|
|
import { migrate } from '../lib/migrate';
|
|
|
|
const logger = console;
|
|
|
|
if (process.argv[1].includes('getstorybook')) {
|
|
logger.log(chalk.yellow('WARNING: getstorybook is deprecated.'));
|
|
logger.log(chalk.yellow('The official command to install Storybook from now on is:\n'));
|
|
codeLog(['sb init']);
|
|
logger.log();
|
|
initiate({}, pkg).then(() => process.exit(0));
|
|
} else {
|
|
program
|
|
.command('init')
|
|
.description('Initialize Storybook into your project.')
|
|
.option('-f --force', 'Forcely add storybook')
|
|
.option('-s --skip-install', 'Skip installing deps')
|
|
.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
|
|
.command('add <addon>')
|
|
.description('Add an addon to your Storybook')
|
|
.option('-N --use-npm', 'Use NPM to build the Storybook server')
|
|
.action((addonName, options) => add(addonName, options));
|
|
|
|
program
|
|
.command('info')
|
|
.description('Prints debugging information about the local environment')
|
|
.action(() => {
|
|
logger.log(chalk.bold('\nEnvironment Info:'));
|
|
envinfo
|
|
.run({
|
|
System: ['OS', 'CPU'],
|
|
Binaries: ['Node', 'Yarn', 'npm'],
|
|
Browsers: ['Chrome', 'Edge', 'Firefox', 'Safari'],
|
|
npmGlobalPackages: ['@storybook/cli'],
|
|
})
|
|
.then(logger.log);
|
|
});
|
|
|
|
program
|
|
.command('migrate <migration>')
|
|
.description('Run a storybook codemod migration on your source files')
|
|
.option('-l --list', 'List available migrations')
|
|
.option('-g --glob <glob>', 'Glob for files upon which to apply the migration', '**/*.js')
|
|
.option(
|
|
'-n --dry-run',
|
|
'Dry run: verify the migration exists and show the files to which it will be applied'
|
|
)
|
|
.action((migration, { configDir, glob, dryRun, list }) => {
|
|
migrate(migration, { configDir, glob, dryRun, list, logger }).catch(err => {
|
|
logger.error(err);
|
|
process.exit(1);
|
|
});
|
|
});
|
|
|
|
program.command('*', { noHelp: true }).action(cmd => {
|
|
logger.error('Invalid command: %s.\nSee --help for a list of available commands.', cmd);
|
|
process.exit(1);
|
|
});
|
|
|
|
program.version(pkg.version).parse(process.argv);
|
|
|
|
if (!program.args.length) {
|
|
program.help();
|
|
}
|
|
}
|