File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -197,27 +197,27 @@ import { SortableTreeWithoutDndContext as SortableTree } from 'react-sortable-tr
197197
198198Please 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
223223Pull requests are welcome!
You can’t perform that action at this time.
0 commit comments