core(ffi): update Node.js 26.3 compatibility

Node.js 26.3 expects FFI signatures to use the current argument and return
field names.
This commit is contained in:
Simon Klee
2026-06-04 11:12:01 +02:00
parent 6e3f91dd8f
commit e9f451edc2
5 changed files with 36 additions and 17 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { existsSync, mkdirSync } from "node:fs"
import { dirname, resolve } from "node:path"
import { fileURLToPath } from "node:url"
export const NODE26_VERSION = "v26.1.0"
export const NODE26_VERSION = "v26.3.0"
const scriptDir = dirname(fileURLToPath(import.meta.url))
const repoRoot = resolve(scriptDir, "..")