aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md15
1 files changed, 11 insertions, 4 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index d99822ace..a95dbbc8f 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -18,6 +18,7 @@
18 - [Debian/Ubuntu](#debianubuntu) 18 - [Debian/Ubuntu](#debianubuntu)
19 - [Fedora](#fedora) 19 - [Fedora](#fedora)
20 - [Windows](#windows) 20 - [Windows](#windows)
21 - [node-gyp](#node-gyp)
21 - [Lerna](#lerna) 22 - [Lerna](#lerna)
22 - [Clone repository with submodule](#clone-repository-with-submodule) 23 - [Clone repository with submodule](#clone-repository-with-submodule)
23 - [Local caching of dependencies](#local-caching-of-dependencies) 24 - [Local caching of dependencies](#local-caching-of-dependencies)
@@ -61,9 +62,7 @@ Currently, these are the combinations of system dependencies that work for MacOS
61node -v 62node -v
62v14.17.3 63v14.17.3
63npm -v 64npm -v
646.14.12 656.14.13
65node-gyp -v
66v8.1.0
67``` 66```
68 67
69#### Git 68#### Git
@@ -92,10 +91,18 @@ Please make sure you run this command as an administrator:
92npm i -g windows-build-tools --vs2015 91npm i -g windows-build-tools --vs2015
93``` 92```
94 93
94#### node-gyp
95
96We need `node-gyp` to be able to compile any native dependencies
97
98```bash
99npm ls -g node-gyp@8.1.0 || npm i -g node-gyp@8.1.0
100```
101
95#### Lerna 102#### Lerna
96 103
97```bash 104```bash
98npm i -g lerna@4.0.0 105npm ls -g lerna@4.0.0 || npm i -g lerna@4.0.0
99``` 106```
100 107
101### Clone repository with submodule 108### Clone repository with submodule