Codemod: Module conversion caveat

This commit is contained in:
Michael Shilman 2019-07-15 10:49:27 +08:00
parent 4ef9aaa8a1
commit 9a215249d6

View File

@ -155,6 +155,8 @@ Heuristics:
This converts all of your "old-style" `storiesOf` stories into component module format, which uses standard ES6 modules.
> NOTE: The output of this transformation may require manual editing after running the transformation. `storiesOf` format allows multiple "kinds" (components) to be declared per file, but module format only allows a single component per file. Therefore, if you use this feature in your input stories, you will need to split up the resulting outputs by hand. You'll see a warning at the console if you need to hand edit.
```sh
./node_modules/.bin/jscodeshift -t ./node_modules/@storybook/codemod/dist/transforms/convert-storiesof-to-module.js . --ignore-pattern "node_modules|dist"
```