Update some packages (#366)

* Update some packages

* Run `make-everything-from-scratch`

* Update `@types/node`
This commit is contained in:
Mosè Giordano
2026-02-05 21:23:59 +00:00
committed by GitHub
parent 7242f2d36e
commit b0504def29
3 changed files with 998 additions and 4070 deletions

29
dist/index.js vendored
View File

@@ -7177,6 +7177,7 @@ const isSatisfiable = (comparators, options) => {
// already replaced the hyphen ranges
// turn into a set of JUST comparators.
const parseComparator = (comp, options) => {
comp = comp.replace(re[t.BUILD], '')
debug('comp', comp, options)
comp = replaceCarets(comp, options)
debug('caret', comp)
@@ -7597,11 +7598,25 @@ class SemVer {
other = new SemVer(other, this.options)
}
return (
compareIdentifiers(this.major, other.major) ||
compareIdentifiers(this.minor, other.minor) ||
compareIdentifiers(this.patch, other.patch)
)
if (this.major < other.major) {
return -1
}
if (this.major > other.major) {
return 1
}
if (this.minor < other.minor) {
return -1
}
if (this.minor > other.minor) {
return 1
}
if (this.patch < other.patch) {
return -1
}
if (this.patch > other.patch) {
return 1
}
return 0
}
comparePre (other) {
@@ -8502,6 +8517,10 @@ module.exports = debug
const numeric = /^[0-9]+$/
const compareIdentifiers = (a, b) => {
if (typeof a === 'number' && typeof b === 'number') {
return a === b ? 0 : a < b ? -1 : 1
}
const anum = numeric.test(a)
const bnum = numeric.test(b)

5037
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -31,7 +31,7 @@
"devDependencies": {
"@types/async-retry": "^1.4.9",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/node": "^25.2.0",
"@types/retry": "^0.12.5",
"@types/semver": "^7.7.0",
"@vercel/ncc": "^0.38.3",