Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2025-02-10 17:23:18 +00:00
parent 8c70d43f73
commit ccc5046d0b
17 changed files with 1088 additions and 958 deletions

2
node_modules/semver/internal/re.js generated vendored
View file

@ -10,6 +10,7 @@ exports = module.exports = {}
const re = exports.re = []
const safeRe = exports.safeRe = []
const src = exports.src = []
const safeSrc = exports.safeSrc = []
const t = exports.t = {}
let R = 0
@ -42,6 +43,7 @@ const createToken = (name, value, isGlobal) => {
debug(name, index, value)
t[name] = index
src[index] = value
safeSrc[index] = safe
re[index] = new RegExp(value, isGlobal ? 'g' : undefined)
safeRe[index] = new RegExp(safe, isGlobal ? 'g' : undefined)
}