File tree 1 file changed +6
-6
lines changed
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
197
197
198
198
Please read the [ Code of Conduct] ( CODE_OF_CONDUCT.md ) . I actively welcome pull requests :)
199
199
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.
201
201
202
202
``` sh
203
203
# Starts a webpack dev server that hosts a demo page with the component.
204
204
# It uses react-hot-loader so changes are reflected on save.
205
- npm start
205
+ yarn start
206
206
207
207
# Start the storybook, which has several different examples to play with.
208
208
# Also hot-reloaded.
209
- npm run storybook
209
+ yarn run storybook
210
210
211
211
# Runs the library tests
212
- npm test
212
+ yarn test
213
213
214
214
# Lints the code with eslint
215
- npm run lint
215
+ yarn run lint
216
216
217
217
# Lints and builds the code, placing the result in the dist directory.
218
218
# This build is necessary to reflect changes if you're
219
219
# `npm link`-ed to this repository from another local project.
220
- npm run build
220
+ yarn run build
221
221
```
222
222
223
223
Pull requests are welcome!
You can’t perform that action at this time.
0 commit comments