mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
refactor(cli): migrate migrate
file to TS
This commit is contained in:
parent
ce1a49542c
commit
d8e77a12e5
@ -1,11 +1,11 @@
|
||||
import { listCodemods, runCodemod } from '@storybook/codemod';
|
||||
|
||||
export async function migrate(
|
||||
migration,
|
||||
{ configDir, glob, dryRun, list, rename, logger, parser }
|
||||
migration: any,
|
||||
{ configDir, glob, dryRun, list, rename, logger, parser }: any
|
||||
) {
|
||||
if (list) {
|
||||
listCodemods().forEach((key) => logger.log(key));
|
||||
listCodemods().forEach((key: any) => logger.log(key));
|
||||
} else if (migration) {
|
||||
await runCodemod(migration, { configDir, glob, dryRun, logger, rename, parser });
|
||||
} else {
|
1
lib/cli/src/typings.d.ts
vendored
Normal file
1
lib/cli/src/typings.d.ts
vendored
Normal file
@ -0,0 +1 @@
|
||||
declare module '@storybook/codemod';
|
Loading…
x
Reference in New Issue
Block a user