File tree 4 files changed +24
-0
lines changed
lib/unsupported-features/node-builtins-modules
4 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ const path = {
10
10
dirname : { [ READ ] : { supported : [ "0.1.16" ] } } ,
11
11
extname : { [ READ ] : { supported : [ "0.1.25" ] } } ,
12
12
format : { [ READ ] : { supported : [ "0.11.15" ] } } ,
13
+ matchesGlob : { [ READ ] : { experimental : [ "22.5.0" ] } } ,
13
14
isAbsolute : { [ READ ] : { supported : [ "0.11.2" ] } } ,
14
15
join : { [ READ ] : { supported : [ "0.1.16" ] } } ,
15
16
normalize : { [ READ ] : { supported : [ "0.1.23" ] } } ,
Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ const process = {
17
17
execArgv : { [ READ ] : { supported : [ "0.7.7" ] } } ,
18
18
execPath : { [ READ ] : { supported : [ "0.1.100" ] } } ,
19
19
exitCode : { [ READ ] : { supported : [ "0.11.8" ] } } ,
20
+ finalization : {
21
+ register : { [ READ ] : { experimental : [ "22.5.0" ] } } ,
22
+ registerBeforeExit : { [ READ ] : { experimental : [ "22.5.0" ] } } ,
23
+ unregister : { [ READ ] : { experimental : [ "22.5.0" ] } } ,
24
+ } ,
20
25
mainModule : {
21
26
[ READ ] : {
22
27
supported : [ "0.1.17" ] ,
Original file line number Diff line number Diff line change
1
+ "use strict"
2
+
3
+ const { READ } = require ( "@eslint-community/eslint-utils" )
4
+
5
+ /** @type {import('../types.js').SupportVersionTraceMap } */
6
+ const sqlite = {
7
+ DatabaseSync : { [ READ ] : { supported : [ "22.5.0" ] } } ,
8
+ StatementSync : { [ READ ] : { supported : [ "22.5.0" ] } } ,
9
+ }
10
+
11
+ /** @type {import('../types.js').SupportVersionTraceMap } */
12
+ module . exports = {
13
+ "node:sqlite" : {
14
+ [ READ ] : { experimental : [ "22.5.0" ] } ,
15
+ ...sqlite ,
16
+ } ,
17
+ }
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ const worker_threads = {
19
19
markAsUntransferable : { [ READ ] : { supported : [ "14.5.0" , "12.19.0" ] } } ,
20
20
isMarkedAsUntransferable : { [ READ ] : { supported : [ "21.0.0" ] } } ,
21
21
moveMessagePortToContext : { [ READ ] : { supported : [ "11.13.0" ] } } ,
22
+ postMessageToThread : { [ READ ] : { experimental : [ "22.5.0" ] } } ,
22
23
receiveMessageOnPort : { [ READ ] : { supported : [ "12.3.0" ] } } ,
23
24
setEnvironmentData : {
24
25
[ READ ] : {
You can’t perform that action at this time.
0 commit comments