aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-04 13:27:04 +0530
committerLibravatar GitHub <noreply@github.com>2021-05-04 07:57:04 +0000
commit76b8b68636d992ac38598d94ca5354dc2316a273 (patch)
tree403f94fb6cb5a6e7b4de6b76425cd0a059659d16
parentHighlight selected service correctly in Quick Switcher (#1324) (diff)
downloadferdium-app-76b8b68636d992ac38598d94ca5354dc2316a273.tar.gz
ferdium-app-76b8b68636d992ac38598d94ca5354dc2316a273.tar.zst
ferdium-app-76b8b68636d992ac38598d94ca5354dc2316a273.zip
Node downgrade to what's supported by appveyor (#1341)
-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