Update Codemod docs

This commit is contained in:
Michael Shilman 2019-07-14 13:28:57 +08:00
parent 84b2bd0684
commit a554f4ff2c

View File

@ -3,8 +3,26 @@
Storybook Codemods is a collection of codemod scripts written with JSCodeshift.
It will help you migrate breaking changes & deprecations.
## CLI Integration
The preferred way to run these codemods is via the CLI's `migrate` command.
To get a list of available codemods:
```
npx -p @storybook/cli sb migrate --list
```
To run a codemod:
```
npx -p @storybook/cli sb migrate name-of-codemod --glob "**/*.stories.js"
```
## Installation
If you want to run these codemods by hand:
```sh
yarn add jscodeshift @storybook/codemod --dev
```