summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-23 20:04:11 -0500
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-04-23 20:05:27 -0500
commit206b0d3ed2638da892c92e8d3b3227a6b2003dd0 (patch)
tree9af4bf1b2391c676e5fd8ab3eac881411d121b92
parentfix more paths for cleaning in the Windows script [skip ci] (diff)
downloadferdium-app-206b0d3ed2638da892c92e8d3b3227a6b2003dd0.tar.gz
ferdium-app-206b0d3ed2638da892c92e8d3b3227a6b2003dd0.tar.zst
ferdium-app-206b0d3ed2638da892c92e8d3b3227a6b2003dd0.zip
Downgraded 'node' to '16.14.2' so that the 'pnpm' conversion can happen smoothly
This also gets us back to the LTS version of 'node'
-rw-r--r--.nvmrc2
-rw-r--r--CONTRIBUTING.md4
-rw-r--r--Dockerfile2
-rw-r--r--package-lock.json2
-rw-r--r--package.json2
5 files changed, 6 insertions, 6 deletions
diff --git a/.nvmrc b/.nvmrc
index 7eae4e2e9..d9f880069 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
18.0.0 16.14.2
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 38534f75e..1c61da2c9 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -66,7 +66,7 @@ Currently, these are the combinations of system dependencies that work for MacOS
66```bash 66```bash
67$ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.json 67$ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.json
68{ 68{
69 "node": "18.0.0", 69 "node": "16.14.2",
70 "npm": "8.7.0", 70 "npm": "8.7.0",
71 "pnpm": "6.32.8" 71 "pnpm": "6.32.8"
72} 72}
@@ -98,7 +98,7 @@ dnf install libX11-devel libXext-devel libXScrnSaver-devel libxkbfile-devel rpm
98Please make sure you have the following installed: 98Please make sure you have the following installed:
99 99
100- Python 3 or higher (we recommend the latest version: [3.10.4](https://www.python.org/ftp/python/3.10.4/python-3.10.4-amd64.exe)) 100- Python 3 or higher (we recommend the latest version: [3.10.4](https://www.python.org/ftp/python/3.10.4/python-3.10.4-amd64.exe))
101- Microsoft Visual Studio Build Tools (2019 or higher) - Only tested with 2019 so far. 101- Microsoft Visual Studio Build Tools (2019 or higher - with Windows 10 SDK selected) - Only tested with 2019 so far.
102 102
103### Clone repository with submodule 103### Clone repository with submodule
104 104
diff --git a/Dockerfile b/Dockerfile
index d824114e4..f09ae8fb8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
1# Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture 1# Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture
2 2
3FROM docker.io/library/node:18.0.0-buster as builder 3FROM docker.io/library/node:16.14.2-buster as builder
4 4
5ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/usr/local/lib:/usr/include:/usr/share" 5ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/usr/local/lib:/usr/include:/usr/share"
6 6
diff --git a/package-lock.json b/package-lock.json
index 1bb8df6c8..a46913bfa 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -165,7 +165,7 @@
165 "webpack-dev-server": "^3.11.2" 165 "webpack-dev-server": "^3.11.2"
166 }, 166 },
167 "engines": { 167 "engines": {
168 "node": "18.0.0", 168 "node": "16.14.2",
169 "npm": "8.7.0" 169 "npm": "8.7.0"
170 }, 170 },
171 "optionalDependencies": { 171 "optionalDependencies": {
diff --git a/package.json b/package.json
index f654d9124..49d66f1c9 100644
--- a/package.json
+++ b/package.json
@@ -13,7 +13,7 @@
13 "repository": "https://github.com/ferdium/ferdium-app.git", 13 "repository": "https://github.com/ferdium/ferdium-app.git",
14 "private": true, 14 "private": true,
15 "engines": { 15 "engines": {
16 "node": "18.0.0", 16 "node": "16.14.2",
17 "npm": "8.7.0" 17 "npm": "8.7.0"
18 }, 18 },
19 "engine-strict": true, 19 "engine-strict": true,