aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-04-26 14:18:56 +0530
committerLibravatar GitHub <noreply@github.com>2021-04-26 08:48:56 +0000
commitc4575638110a40f563cfd959ba774810e29e8d66 (patch)
treed4148ca6f7b2a02f87d0c2b468dc4ea5c19fef43
parentUpgraded electron and related electron packages (#1297) (diff)
downloadferdium-app-c4575638110a40f563cfd959ba774810e29e8d66.tar.gz
ferdium-app-c4575638110a40f563cfd959ba774810e29e8d66.tar.zst
ferdium-app-c4575638110a40f563cfd959ba774810e29e8d66.zip
Upgrading nodejs to 12.22.1 (#1293)
-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