From c89042966b88893c04fee6f1968373f9cf6550b6 Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Thu, 20 Jun 2019 12:42:46 +0800 Subject: [PATCH] Codemod to add component parameters to legacy stories --- lib/codemod/README.md | 74 ++++++++++++------- .../add-component-parameters.input.js | 44 +++++++++++ .../add-component-parameters.output.js | 64 ++++++++++++++++ .../add-component-parameters.test.js | 8 ++ .../transforms/add-component-parameters.js | 62 ++++++++++++++++ 5 files changed, 227 insertions(+), 25 deletions(-) create mode 100644 lib/codemod/src/transforms/__testfixtures__/add-component-parameters/add-component-parameters.input.js create mode 100644 lib/codemod/src/transforms/__testfixtures__/add-component-parameters/add-component-parameters.output.js create mode 100644 lib/codemod/src/transforms/__tests__/add-component-parameters.test.js create mode 100644 lib/codemod/src/transforms/add-component-parameters.js diff --git a/lib/codemod/README.md b/lib/codemod/README.md index 1f69564413f..f319e19ffe4 100644 --- a/lib/codemod/README.md +++ b/lib/codemod/README.md @@ -9,8 +9,8 @@ It will help you migrate breaking changes & deprecations. yarn add jscodeshift @storybook/codemod --dev ``` -- `@storybook/codemod` is our collection of codemod scripts. -- `jscodeshift` is a tool we use to apply our codemods. +- `@storybook/codemod` is our collection of codemod scripts. +- `jscodeshift` is a tool we use to apply our codemods. After running the migration commands, you can remove them from your `package.json`, if you added them. @@ -65,23 +65,18 @@ Replaces the Info addon's deprecated `addWithInfo` API with the standard `withIn Simple example: ```js -storiesOf('Button').addWithInfo( - 'simple usage', - 'This is the basic usage of the button.', - () => ( -