From 7b7dcc9b22b8c4e13f027512df2c99b66a376957 Mon Sep 17 00:00:00 2001 From: Hannah Zabarsky Date: Wed, 5 Jun 2019 13:11:34 -0400 Subject: [PATCH] Update README to reflect project requirements in contributor section --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7bfdc799..f416ab61 100644 --- a/README.md +++ b/README.md @@ -197,27 +197,27 @@ import { SortableTreeWithoutDndContext as SortableTree } from 'react-sortable-tr Please read the [Code of Conduct](CODE_OF_CONDUCT.md). I actively welcome pull requests :) -After cloning the repository and running `npm install` inside, you can use the following commands to develop and build the project. +After cloning the repository and running `yarn install` inside, you can use the following commands to develop and build the project. ```sh # Starts a webpack dev server that hosts a demo page with the component. # It uses react-hot-loader so changes are reflected on save. -npm start +yarn start # Start the storybook, which has several different examples to play with. # Also hot-reloaded. -npm run storybook +yarn run storybook # Runs the library tests -npm test +yarn test # Lints the code with eslint -npm run lint +yarn run lint # Lints and builds the code, placing the result in the dist directory. # This build is necessary to reflect changes if you're # `npm link`-ed to this repository from another local project. -npm run build +yarn run build ``` Pull requests are welcome!