mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:11:26 +08:00
Storybook Codemods
Storybook Codemods is a collection of codemod scripts written with JSCodeshift. It will help you migrate breaking changes.
Installation
npm install @storybook/codemod
Transforms
add-organisation-to-package-name
Updates package names in imports to include our organisation name prefix
(@storybook/
), stripping off the old @storybook/
prefix.
> jscodeshift -t add-organisation-to-package-name path/to/source.js
Example:
import { storiesOf } from '@kadira/storybook';
becomes
import { storiesOf } from '@storybook/react';