Skip to content

Commit 420d602

Browse files
hannahlifejuggler
authored andcommitted
Update README to reflect project requirements in contributor section (#496)
1 parent c87715a commit 420d602

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -197,27 +197,27 @@ import { SortableTreeWithoutDndContext as SortableTree } from 'react-sortable-tr
197197

198198
Please read the [Code of Conduct](CODE_OF_CONDUCT.md). I actively welcome pull requests :)
199199

200-
After cloning the repository and running `npm install` inside, you can use the following commands to develop and build the project.
200+
After cloning the repository and running `yarn install` inside, you can use the following commands to develop and build the project.
201201

202202
```sh
203203
# Starts a webpack dev server that hosts a demo page with the component.
204204
# It uses react-hot-loader so changes are reflected on save.
205-
npm start
205+
yarn start
206206

207207
# Start the storybook, which has several different examples to play with.
208208
# Also hot-reloaded.
209-
npm run storybook
209+
yarn run storybook
210210

211211
# Runs the library tests
212-
npm test
212+
yarn test
213213

214214
# Lints the code with eslint
215-
npm run lint
215+
yarn run lint
216216

217217
# Lints and builds the code, placing the result in the dist directory.
218218
# This build is necessary to reflect changes if you're
219219
# `npm link`-ed to this repository from another local project.
220-
npm run build
220+
yarn run build
221221
```
222222

223223
Pull requests are welcome!

0 commit comments

Comments
 (0)