mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
add a babelrc command
This commit is contained in:
parent
4372cf8618
commit
090c0269ec
6
lib/cli/src/babal-config.ts
Normal file
6
lib/cli/src/babal-config.ts
Normal file
@ -0,0 +1,6 @@
|
||||
import { logger } from '@storybook/node-logger';
|
||||
|
||||
export const generateStorybookBabelConfig = async () => {
|
||||
const cwd = process.cwd();
|
||||
logger.info(`Generating the storybook default babel config at ${cwd}`);
|
||||
};
|
@ -11,6 +11,7 @@ import { extract } from './extract';
|
||||
import { upgrade } from './upgrade';
|
||||
import { repro } from './repro';
|
||||
import { link } from './link';
|
||||
import { generateStorybookBabelConfig } from './babal-config';
|
||||
|
||||
const pkg = sync({ cwd: __dirname }).packageJson;
|
||||
|
||||
@ -37,6 +38,11 @@ program
|
||||
.option('-s --skip-postinstall', 'Skip package specific postinstall config modifications')
|
||||
.action((addonName, options) => add(addonName, options));
|
||||
|
||||
program
|
||||
.command('babelrc')
|
||||
.description('generate the default storybook babel config into your current working directory')
|
||||
.action(() => generateStorybookBabelConfig());
|
||||
|
||||
program
|
||||
.command('upgrade')
|
||||
.description('Upgrade your Storybook packages to the latest')
|
||||
|
Loading…
x
Reference in New Issue
Block a user