Norbert de Langen bf7db99e6d v3.0.0-alpha.0
2017-05-17 21:49:25 +02:00
..
2017-05-17 00:34:34 +02:00
2017-05-17 21:49:25 +02:00
2017-05-17 00:21:36 +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';