diff options
author | Lino Le Van <11367844+lino-levan@users.noreply.github.com> | 2023-01-13 13:10:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 22:10:53 +0100 |
commit | d4767a1a876f06b3b4b703b79b16af3571f2f583 (patch) | |
tree | 37b817be89a734bfac18e132d5352a5be008ef51 | |
parent | e09d298a4ac0d0d8a7f3396102422f3dd84dc939 (diff) |
fix(napi): update node version to lts (#17399)
-rw-r--r-- | cli/napi/env.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/napi/env.rs b/cli/napi/env.rs index 6568c20c9..841b6cd96 100644 --- a/cli/napi/env.rs +++ b/cli/napi/env.rs @@ -148,8 +148,8 @@ fn napi_get_uv_event_loop(_env: *mut Env, uv_loop: *mut *mut ()) -> Result { } const NODE_VERSION: napi_node_version = napi_node_version { - major: 17, - minor: 4, + major: 18, + minor: 13, patch: 0, release: "Deno\0".as_ptr() as *const c_char, }; |