mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 11:23:25 +08:00
DEV: Allow newer versions of node (#17261)
It should now properly work with 18.x, so we should start moving into direction of it being the default.
This commit is contained in:
parent
c6b3d3e4b4
commit
39a025c7af
|
@ -38,7 +38,7 @@
|
|||
"loader.js": "^4.7.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
},
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
"loader.js": "^4.7.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
},
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
"loader.js": "^4.7.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
},
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
"loader.js": "^4.7.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
},
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
]
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
}
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
"wizard": "^1.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
},
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
"loader.js": "^4.7.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
},
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"loader.js": "^4.7.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
},
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"loader.js": "^4.7.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
},
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
"loader.js": "^4.7.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
},
|
||||
|
|
|
@ -52,12 +52,6 @@ end
|
|||
|
||||
exit 1 if !system "yarn -s install --cwd #{yarn_dir}"
|
||||
|
||||
if !system("node -p 'require(\"crypto\").createHash(\"md4\")'", out: "/dev/null", err: "/dev/null")
|
||||
$stderr << "#{"ERROR".red}: Node 17 with OpenSSL 3 is currently unsupported\n"
|
||||
$stderr << "Please use node LTS (16.x) instead\n"
|
||||
exit 1
|
||||
end
|
||||
|
||||
if ARGV.include?("-u") || ARGV.include?("--unicorn")
|
||||
unicorn_env = { "DISCOURSE_PORT" => ENV["DISCOURSE_PORT"] || "4200" }
|
||||
unicorn_pid = spawn(unicorn_env, __dir__ + "/unicorn")
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"postinstall": "yarn --cwd app/assets/javascripts/discourse"
|
||||
},
|
||||
"engines": {
|
||||
"node": "12.* || 14.* || >= 16",
|
||||
"node": "16.* || >= 18",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">= 1.21.1"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user