Skip to content

Commit

Permalink
[New] add node:sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Dec 5, 2024
1 parent aa84aa3 commit 1ee94d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions core.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
"node:repl": [">= 14.18 && < 15", ">= 16"],
"node:sea": [">= 20.12 && < 21", ">= 21.7"],
"smalloc": ">= 0.11.5 && < 3",
"node:sqlite": ">= 23.4",
"_stream_duplex": ">= 0.9.4",
"node:_stream_duplex": [">= 14.18 && < 15", ">= 16"],
"_stream_transform": ">= 0.9.4",
Expand Down
3 changes: 3 additions & 0 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ test('core modules', function (t) {
if (semver.satisfies(process.version, '^20.12 || >= 21.7')) {
libs = libs.concat('node:sea');
}
if (semver.satisfies(process.version, '>= 23.4')) {
libs = libs.concat('node:sqlite');
}

for (var i = 0; i < libs.length; ++i) {
var mod = libs[i];
Expand Down

0 comments on commit 1ee94d2

Please sign in to comment.