aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.nvmrc2
-rw-r--r--README.md2
-rw-r--r--appveyor.yml5
3 files changed, 6 insertions, 3 deletions
diff --git a/.nvmrc b/.nvmrc
index 493319d27..25615cc6a 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
12.16.3 12.22.1
diff --git a/README.md b/README.md
index cb40c29e5..867b42ce1 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 v10 or above. 216Please make sure you are running NodeJS v12. The exact node version used by the developers/contributors is specified in the [nvmrc file](./.nvmrc)
217 217
218#### Git 218#### Git
219 219
diff --git a/appveyor.yml b/appveyor.yml
index 9ca5e17f5..8de14df7d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -11,9 +11,12 @@ cache:
11 11
12image: Visual Studio 2019 12image: Visual Studio 2019
13 13
14environment:
15 nodejs_version: "12.22.1"
16
14install: 17install:
15 - appveyor-retry git submodule update --init --recursive 18 - appveyor-retry git submodule update --init --recursive
16 - ps: Install-Product node 10 19 - ps: Install-Product node $env:nodejs_version
17 - cd recipes && npm install && npm run package && cd .. 20 - cd recipes && npm install && npm run package && cd ..
18 - appveyor-retry npx lerna bootstrap 21 - appveyor-retry npx lerna bootstrap
19 22