1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 13:00:36 -05:00

chore: update hardcoded stable node verson in process polyfill

Signed-off-by: Sebastien Guillemot <SebastienGllmt@gmail.com>
This commit is contained in:
Sebastien Guillemot 2024-11-25 08:09:37 +09:00 committed by GitHub
parent 12b377247b
commit 792578ea13
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,7 +116,7 @@ export const env: InstanceType<ObjectConstructor> & Record<string, string> =
* it pointed to Deno version, but that led to incompability
* with some packages.
*/
export const version = "v20.11.1";
export const version = "v22.10.0";
/**
* https://nodejs.org/api/process.html#process_process_versions
@ -127,7 +127,7 @@ export const version = "v20.11.1";
* with some packages. Value of `v8` field is still taken from `Deno.version`.
*/
export const versions = {
node: "20.11.1",
node: "22.10.0",
uv: "1.43.0",
zlib: "1.2.11",
brotli: "1.0.9",