is-core-module
Advanced tools
Comparing version 2.15.1 to 2.16.0
@@ -8,2 +8,9 @@ # Changelog | ||
## [v2.16.0](https://github.com/inspect-js/is-core-module/compare/v2.15.1...v2.16.0) - 2024-12-13 | ||
### Commits | ||
- [New] add `node:sqlite` [`1ee94d2`](https://github.com/inspect-js/is-core-module/commit/1ee94d20857e22cdb24e9b4bb1a2097f2e03e26f) | ||
- [Dev Deps] update `auto-changelog`, `tape` [`aa84aa3`](https://github.com/inspect-js/is-core-module/commit/aa84aa34face677f14e08ec1c737f0c4bba27260) | ||
## [v2.15.1](https://github.com/inspect-js/is-core-module/compare/v2.15.0...v2.15.1) - 2024-08-21 | ||
@@ -10,0 +17,0 @@ |
@@ -94,2 +94,3 @@ { | ||
"smalloc": ">= 0.11.5 && < 3", | ||
"node:sqlite": ">= 23.4", | ||
"_stream_duplex": ">= 0.9.4", | ||
@@ -96,0 +97,0 @@ "node:_stream_duplex": [">= 14.18 && < 15", ">= 16"], |
{ | ||
"name": "is-core-module", | ||
"version": "2.15.1", | ||
"version": "2.16.0", | ||
"description": "Is this specifier a node.js core module?", | ||
@@ -49,3 +49,3 @@ "main": "index.js", | ||
"@ljharb/eslint-config": "^21.1.1", | ||
"auto-changelog": "^2.4.0", | ||
"auto-changelog": "^2.5.0", | ||
"encoding": "^0.1.13", | ||
@@ -59,3 +59,3 @@ "eslint": "=8.8.0", | ||
"semver": "^6.3.1", | ||
"tape": "^5.8.1" | ||
"tape": "^5.9.0" | ||
}, | ||
@@ -62,0 +62,0 @@ "auto-changelog": { |
@@ -95,2 +95,5 @@ 'use strict'; | ||
} | ||
if (semver.satisfies(process.version, '>= 23.4')) { | ||
libs = libs.concat('node:sqlite'); | ||
} | ||
@@ -97,0 +100,0 @@ for (var i = 0; i < libs.length; ++i) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33228
355