Skip to content

Commit 1f7a108

Browse files
scagoodaladdin-add
authored andcommitted
feat: Node v22.8.0 #335
1 parent 0fd7932 commit 1f7a108

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

lib/unsupported-features/node-builtins-modules/module.js

+7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,20 @@ const { READ } = require("@eslint-community/eslint-utils")
55
/** @type {import('../types.js').SupportVersionTraceMap} */
66
const Module = {
77
builtinModules: { [READ]: { supported: ["9.3.0", "8.10.0", "6.13.0"] } },
8+
constants: {
9+
compileCacheStatus: {
10+
[READ]: { experimental: ["22.8.0"] },
11+
},
12+
},
813
createRequire: { [READ]: { supported: ["12.2.0"] } },
914
createRequireFromPath: {
1015
[READ]: {
1116
supported: ["10.12.0"],
1217
deprecated: ["12.2.0"],
1318
},
1419
},
20+
enableCompileCache: { [READ]: { experimental: ["22.8.0"] } },
21+
getCompileCacheDir: { [READ]: { experimental: ["22.8.0"] } },
1522
isBuiltin: { [READ]: { supported: ["18.6.0", "16.17.0"] } },
1623
register: { [READ]: { experimental: ["20.6.0"] } },
1724
syncBuiltinESMExports: { [READ]: { supported: ["12.12.0"] } },

lib/unsupported-features/node-builtins-modules/perf_hooks.js

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ const perf_hooks = {
2424
loopExit: { [READ]: { supported: ["8.5.0"] } },
2525
loopStart: { [READ]: { supported: ["8.5.0"] } },
2626
nodeStart: { [READ]: { supported: ["8.5.0"] } },
27+
uvMetricsInfo: { [READ]: { supported: ["22.8.0"] } },
2728
v8Start: { [READ]: { supported: ["8.5.0"] } },
2829
},
2930
now: { [READ]: { supported: ["8.5.0"] } },

0 commit comments

Comments
 (0)