2017-05-26 11:21:46 +02:00
..
2017-05-26 10:05:20 +02:00
2017-05-25 18:28:23 +02:00
2017-05-26 11:21:46 +02:00

Storybook Codemods

Greenkeeper badge Build Status CodeFactor Known Vulnerabilities BCH compliance codecov Storybook Slack

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';