mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +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';
|
import { listCodemods, runCodemod } from '@storybook/codemod';
|
||||||
|
|
||||||
export async function migrate(
|
export async function migrate(
|
||||||
migration,
|
migration: any,
|
||||||
{ configDir, glob, dryRun, list, rename, logger, parser }
|
{ configDir, glob, dryRun, list, rename, logger, parser }: any
|
||||||
) {
|
) {
|
||||||
if (list) {
|
if (list) {
|
||||||
listCodemods().forEach((key) => logger.log(key));
|
listCodemods().forEach((key: any) => logger.log(key));
|
||||||
} else if (migration) {
|
} else if (migration) {
|
||||||
await runCodemod(migration, { configDir, glob, dryRun, logger, rename, parser });
|
await runCodemod(migration, { configDir, glob, dryRun, logger, rename, parser });
|
||||||
} else {
|
} 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