Merge pull request #91 from fitzgen/more-contrib

Update CONTRIBUTING.md
This commit is contained in:
Alex Crichton 2018-03-29 17:28:03 +02:00 committed by GitHub
commit 95d38795a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,8 @@ please checkout [`DESIGN.md`](DESIGN.md).
[install Rust]: https://www.rust-lang.org/en-US/install.html
2. The tests for this project use Node. [Install Node].
2. The tests for this project use Node. Make sure you have node >= 8 installed,
as that is when WebAssembly support was introduced. [Install Node].
[Install Node]: https://nodejs.org/en/
@ -24,5 +25,16 @@ please checkout [`DESIGN.md`](DESIGN.md).
npm install yarn -g
```
... or follow other platform-specific instructions [here](https://yarnpkg.com/en/docs/install).
... or follow other platform-specific instructions [here](https://yarnpkg.com/en/docs/install).
Once `yarn` is installed, run it in the top level directory:
```
yarn
```
Finally, you can run the tests with `cargo`:
```
cargo test
```