From baa742c9f425dcdea4747c7d10de45099c63c16c Mon Sep 17 00:00:00 2001 From: Kees Kluskens Date: Sat, 30 Sep 2017 15:23:46 +0200 Subject: [PATCH] Contributing guide: fix invalid storybook start `yarn start storybook` does not exist, it is `yarn storybook` *or* `yarn start` --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 13b26ecd6e6..5e1afea338b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -59,7 +59,7 @@ yarn bootstrap --core cd examples/cra-kitchen-sink # make changes to try and reproduce the problem, such as adding components + stories -yarn start storybook +yarn storybook # see if you can see the problem, if so, commit it: git checkout "branch-describing-issue"