mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
fix(node): Bump hardcoded version to latest (#20366)
When trying to run ``` deno run -A --unstable npm:astro dev ``` in my Astro project it fails with: ``` Node.js v18.12.1 is not supported by Astro! Please upgrade Node.js to a supported version: ">=18.14.1" ``` My current version is: ``` ~ ❯ node --version v20.5.1 ``` Bumping the version to the latest stable Release of node in `ext/node/polyfills/_process/process.ts` fixes this. I don't know if this causes any conflicts, so please feel free to correct me here.
This commit is contained in:
parent
1dc5d42114
commit
2cc7c8432f
1 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,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 = "v18.12.1";
|
||||
export const version = "v18.17.1";
|
||||
|
||||
/**
|
||||
* https://nodejs.org/api/process.html#process_process_versions
|
||||
|
@ -113,7 +113,7 @@ export const version = "v18.12.1";
|
|||
* with some packages. Value of `v8` field is still taken from `Deno.version`.
|
||||
*/
|
||||
export const versions = {
|
||||
node: "18.12.1",
|
||||
node: "18.17.1",
|
||||
uv: "1.43.0",
|
||||
zlib: "1.2.11",
|
||||
brotli: "1.0.9",
|
||||
|
|
Loading…
Reference in a new issue