Skip to content

Commit

Permalink
add missing pieces to contributing.md (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
p-j authored Jul 12, 2021
1 parent c09ed83 commit d709b36
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
10.24.1
14 changes: 12 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,20 @@ yarn install

### Linux

Install [git](https://git-scm.com/), [node.js](https://nodejs.org/) (version ^10.15), [GNU Make](http://www.gnu.org/software/make/), and libglew-dev
Install [git](https://git-scm.com/), [GNU Make](http://www.gnu.org/software/make/), and libglew-dev
```bash
sudo apt-get update &&
sudo apt-get install build-essential git nodejs libglew-dev libxi-dev
sudo apt-get install build-essential git libglew-dev libxi-dev default-jre default-jdk
```

Install [nvm](https://github.com/nvm-sh/nvm)
```bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
```

Install [Node.js](https://nodejs.org/) ^10.15
```
nvm install 10.24.1 # latest v10 version that will run the test suite
```

Install [yarn](https://yarnpkg.com/en/docs/install#linux-tab)
Expand Down

0 comments on commit d709b36

Please sign in to comment.