mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:21:06 +08:00
@storybook/codemod
Codemod
A collection of codemod scripts written with JSCodeshift
Installation
yarn add @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 '@storybook/react';
becomes
import { storiesOf } from '@storybook/react';