aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.nvmrc2
-rw-r--r--README.md2
-rw-r--r--appveyor.yml3
3 files changed, 4 insertions, 3 deletions
diff --git a/.nvmrc b/.nvmrc
index 6b17d228d..c10742477 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
14.16.1 14.15.0
diff --git a/README.md b/README.md
index d9d8db4f8..8ff73ea6e 100644
--- a/README.md
+++ b/README.md
@@ -213,7 +213,7 @@ If you use an AUR Helper e.g. yay, simply install it via `yay -S ferdi`.
213 213
214#### Node.js 214#### Node.js
215 215
216Please make sure you are running NodeJS v12. The exact node version used by the developers/contributors is specified in the [nvmrc file](./.nvmrc) 216Please make sure you are running the exact node version used by the developers/contributors as specified in the [nvmrc file](./.nvmrc)
217 217
218#### Git 218#### Git
219 219
diff --git a/appveyor.yml b/appveyor.yml
index 1f5ebe1fc..5aab6e853 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -12,11 +12,12 @@ cache:
12image: Visual Studio 2019 12image: Visual Studio 2019
13 13
14environment: 14environment:
15 nodejs_version: "14.16.1" 15 nodejs_version: "14.15.0"
16 16
17install: 17install:
18 - appveyor-retry git submodule update --init --recursive 18 - appveyor-retry git submodule update --init --recursive
19 - ps: Install-Product node $env:nodejs_version 19 - ps: Install-Product node $env:nodejs_version
20 - cmd: set NODE_OPTIONS=--max-old-space-size=2048
20 - cd recipes && npm install && npm run package && cd .. 21 - cd recipes && npm install && npm run package && cd ..
21 - appveyor-retry npx lerna bootstrap 22 - appveyor-retry npx lerna bootstrap
22 23