1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

fix(napi): update node version to lts (#17399)

This commit is contained in:
Lino Le Van 2023-01-13 13:10:53 -08:00 committed by GitHub
parent e09d298a4a
commit d4767a1a87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
};