Norbert de Langen a81757b333 v3.0.0-alpha.1
2017-05-19 22:40:47 +02:00
..
2017-05-19 22:40:47 +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';