@storybook/codemod

Codemod

A collection of codemod scripts written with JSCodeshift

Installation

yarn add @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 '@storybook/react';

becomes

import { storiesOf } from '@storybook/react';