This commit is contained in:
Michael Shilman 2019-07-14 13:35:15 +08:00
parent a554f4ff2c
commit eeb8f65034

View File

@ -50,13 +50,13 @@ if (process.argv[1].includes('getstorybook')) {
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'
)
.description('Run a storybook code migration from an addon')
.action((migration, { configDir, glob, dryRun, list }) => {
migrate(migration, { configDir, glob, dryRun, list, logger }).catch(err => {
logger.error(err);