diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-09-21 12:14:37 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-21 06:44:37 +0000 |
commit | cf6f649829fbb0562681bc9db0c4c1261d4a40b1 (patch) | |
tree | b559f74af3e23a3395cb6732b00a81d68378cff3 /ext/node/polyfills/_process | |
parent | a4ac6a3f5f1b02b5290ab603d76b5cd9030731ca (diff) |
fix(node): point process.version to Node 18.18.0 LTS (#20597)
Fixes https://github.com/denoland/deno/issues/20590
Diffstat (limited to 'ext/node/polyfills/_process')
-rw-r--r-- | ext/node/polyfills/_process/process.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/_process/process.ts b/ext/node/polyfills/_process/process.ts index 2b2fae9cd..062effe07 100644 --- a/ext/node/polyfills/_process/process.ts +++ b/ext/node/polyfills/_process/process.ts @@ -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.17.1"; +export const version = "v18.18.0"; /** * https://nodejs.org/api/process.html#process_process_versions |