Skip to content

Commit

Permalink
Merge pull request #9708 from yeseouler/next
Browse files Browse the repository at this point in the history
Insert 'yarn' command between 'cd storybook' and 'yarn bootstrap (--core)'
  • Loading branch information
shilman committed Feb 12, 2020
1 parent 0807b20 commit 4c525e1
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions CONTRIBUTING.md
Expand Up @@ -30,6 +30,8 @@ cd storybook
yarn bootstrap
```

> NOTE: on windows you may need to run `yarn` before `yarn bootstrap`!
The bootstrap command might ask which sections of the codebase you want to bootstrap. Unless you're going to work with ReactNative or the Documentation, you can keep the default.

You can also pick directly from CLI:
Expand Down Expand Up @@ -140,6 +142,8 @@ git clone https://github.com/storybookjs/storybook.git
cd storybook
yarn bootstrap --core

# NOTE: on windows you may need to run `yarn` before `yarn bootstrap`!

# make changes to try and reproduce the problem, such as adding components + stories
cd examples/cra-kitchen-sink
yarn storybook
Expand Down Expand Up @@ -263,10 +267,11 @@ If you run into trouble here, make sure your node, npm, and **_yarn_** are on th
1. `cd ~` (optional)
2. `git clone https://github.com/storybookjs/storybook.git` _bonus_: use your own fork for this step
3. `cd storybook`
4. `yarn`
5. `yarn bootstrap --core`
6. `yarn test --core`
7. `yarn dev` _You must have this running for your changes to show up_
4. `yarn bootstrap --core`
5. `yarn test --core`
6. `yarn dev` _You must have this running for your changes to show up_

> NOTE: on windows you may need to run `yarn` before `yarn bootstrap` (between steps 3 and 4).
#### Bootstrapping everything

Expand Down

0 comments on commit 4c525e1

Please sign in to comment.