[docs] use yarn in CONTRIBUTING.md (#3150)

* [docs] use yarn in CONTRIBUTING.md

* Updating badges
This commit is contained in:
Maxime Beauchemin
2017-07-19 01:17:56 -07:00
committed by GitHub
parent d7e419127c
commit 51f1aa3106
2 changed files with 12 additions and 10 deletions

View File

@@ -223,8 +223,13 @@ To install third party libraries defined in `package.json`, run the
following within the `superset/assets/` directory which will install them in a
new `node_modules/` folder within `assets/`.
```
npm install
```bash
# from the root of the repository, move to where our JS package.json lives
cd superset/assets/
# install yarn, a replacement for `npm install` that is faster and more deterministic
npm install -g yarn
# run yarn to fetch all the dependencies
yarn
```
To parse and generate bundled files for superset, run either of the