Merge pull request #3509 from github/dependabot/npm_and_yarn/multi-871638c4a1

Bump minimatch
This commit is contained in:
Henry Mercer
2026-02-25 13:43:36 +00:00
committed by GitHub
13 changed files with 175 additions and 92 deletions

View File

@@ -49518,6 +49518,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;
@@ -103582,6 +103583,7 @@ var require_minimatch2 = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
this.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;
@@ -116408,9 +116410,9 @@ var require_isPlainObject = __commonJS({
}
});
// node_modules/@isaacs/balanced-match/dist/commonjs/index.js
// node_modules/glob/node_modules/balanced-match/dist/commonjs/index.js
var require_commonjs18 = __commonJS({
"node_modules/@isaacs/balanced-match/dist/commonjs/index.js"(exports2) {
"node_modules/glob/node_modules/balanced-match/dist/commonjs/index.js"(exports2) {
"use strict";
Object.defineProperty(exports2, "__esModule", { value: true });
exports2.range = exports2.balanced = void 0;
@@ -116470,9 +116472,9 @@ var require_commonjs18 = __commonJS({
}
});
// node_modules/@isaacs/brace-expansion/dist/commonjs/index.js
// node_modules/glob/node_modules/brace-expansion/dist/commonjs/index.js
var require_commonjs19 = __commonJS({
"node_modules/@isaacs/brace-expansion/dist/commonjs/index.js"(exports2) {
"node_modules/glob/node_modules/brace-expansion/dist/commonjs/index.js"(exports2) {
"use strict";
Object.defineProperty(exports2, "__esModule", { value: true });
exports2.EXPANSION_MAX = void 0;
@@ -117233,6 +117235,7 @@ var require_ast = __commonJS({
let escaping = false;
let re = "";
let uflag = false;
let inStar = false;
for (let i = 0; i < glob2.length; i++) {
const c = glob2.charAt(i);
if (escaping) {
@@ -117240,6 +117243,16 @@ var require_ast = __commonJS({
re += (reSpecials.has(c) ? "\\" : "") + c;
continue;
}
if (c === "*") {
if (inStar)
continue;
inStar = true;
re += noEmpty && /^[*]+$/.test(glob2) ? starNoEmpty : star;
hasMagic = true;
continue;
} else {
inStar = false;
}
if (c === "\\") {
if (i === glob2.length - 1) {
re += "\\\\";
@@ -117258,11 +117271,6 @@ var require_ast = __commonJS({
continue;
}
}
if (c === "*") {
re += noEmpty && glob2 === "*" ? starNoEmpty : star;
hasMagic = true;
continue;
}
if (c === "?") {
re += qmark;
hasMagic = true;
@@ -117422,7 +117430,7 @@ var require_commonjs20 = __commonJS({
if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
return [pattern];
}
return (0, brace_expansion_1.expand)(pattern);
return (0, brace_expansion_1.expand)(pattern, { max: options.braceExpandMax });
};
exports2.braceExpand = braceExpand;
exports2.minimatch.braceExpand = exports2.braceExpand;
@@ -117466,7 +117474,8 @@ var require_commonjs20 = __commonJS({
this.pattern = pattern;
this.platform = options.platform || defaultPlatform;
this.isWindows = this.platform === "win32";
this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || options.allowWindowsEscape === false;
const awe = "allowWindowsEscape";
this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || options[awe] === false;
if (this.windowsPathsNoEscape) {
this.pattern = this.pattern.replace(/\\/g, "/");
}
@@ -117523,7 +117532,10 @@ var require_commonjs20 = __commonJS({
const isUNC = s[0] === "" && s[1] === "" && (s[2] === "?" || !globMagic.test(s[2])) && !globMagic.test(s[3]);
const isDrive = /^[a-z]:/i.test(s[0]);
if (isUNC) {
return [...s.slice(0, 4), ...s.slice(4).map((ss) => this.parse(ss))];
return [
...s.slice(0, 4),
...s.slice(4).map((ss) => this.parse(ss))
];
} else if (isDrive) {
return [s[0], ...s.slice(1).map((ss) => this.parse(ss))];
}
@@ -117804,7 +117816,10 @@ var require_commonjs20 = __commonJS({
const fdi = fileUNC ? 3 : fileDrive ? 0 : void 0;
const pdi = patternUNC ? 3 : patternDrive ? 0 : void 0;
if (typeof fdi === "number" && typeof pdi === "number") {
const [fd, pd] = [file[fdi], pattern[pdi]];
const [fd, pd] = [
file[fdi],
pattern[pdi]
];
if (fd.toLowerCase() === pd.toLowerCase()) {
pattern[pdi] = fd;
if (pdi > fdi) {

1
lib/analyze-action.js generated
View File

@@ -49518,6 +49518,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;

View File

@@ -49518,6 +49518,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;

View File

@@ -49518,6 +49518,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;
@@ -103582,6 +103583,7 @@ var require_minimatch2 = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
this.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;
@@ -116408,9 +116410,9 @@ var require_isPlainObject = __commonJS({
}
});
// node_modules/@isaacs/balanced-match/dist/commonjs/index.js
// node_modules/glob/node_modules/balanced-match/dist/commonjs/index.js
var require_commonjs18 = __commonJS({
"node_modules/@isaacs/balanced-match/dist/commonjs/index.js"(exports2) {
"node_modules/glob/node_modules/balanced-match/dist/commonjs/index.js"(exports2) {
"use strict";
Object.defineProperty(exports2, "__esModule", { value: true });
exports2.range = exports2.balanced = void 0;
@@ -116470,9 +116472,9 @@ var require_commonjs18 = __commonJS({
}
});
// node_modules/@isaacs/brace-expansion/dist/commonjs/index.js
// node_modules/glob/node_modules/brace-expansion/dist/commonjs/index.js
var require_commonjs19 = __commonJS({
"node_modules/@isaacs/brace-expansion/dist/commonjs/index.js"(exports2) {
"node_modules/glob/node_modules/brace-expansion/dist/commonjs/index.js"(exports2) {
"use strict";
Object.defineProperty(exports2, "__esModule", { value: true });
exports2.EXPANSION_MAX = void 0;
@@ -117233,6 +117235,7 @@ var require_ast = __commonJS({
let escaping = false;
let re = "";
let uflag = false;
let inStar = false;
for (let i = 0; i < glob2.length; i++) {
const c = glob2.charAt(i);
if (escaping) {
@@ -117240,6 +117243,16 @@ var require_ast = __commonJS({
re += (reSpecials.has(c) ? "\\" : "") + c;
continue;
}
if (c === "*") {
if (inStar)
continue;
inStar = true;
re += noEmpty && /^[*]+$/.test(glob2) ? starNoEmpty : star;
hasMagic = true;
continue;
} else {
inStar = false;
}
if (c === "\\") {
if (i === glob2.length - 1) {
re += "\\\\";
@@ -117258,11 +117271,6 @@ var require_ast = __commonJS({
continue;
}
}
if (c === "*") {
re += noEmpty && glob2 === "*" ? starNoEmpty : star;
hasMagic = true;
continue;
}
if (c === "?") {
re += qmark;
hasMagic = true;
@@ -117422,7 +117430,7 @@ var require_commonjs20 = __commonJS({
if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
return [pattern];
}
return (0, brace_expansion_1.expand)(pattern);
return (0, brace_expansion_1.expand)(pattern, { max: options.braceExpandMax });
};
exports2.braceExpand = braceExpand;
exports2.minimatch.braceExpand = exports2.braceExpand;
@@ -117466,7 +117474,8 @@ var require_commonjs20 = __commonJS({
this.pattern = pattern;
this.platform = options.platform || defaultPlatform;
this.isWindows = this.platform === "win32";
this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || options.allowWindowsEscape === false;
const awe = "allowWindowsEscape";
this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || options[awe] === false;
if (this.windowsPathsNoEscape) {
this.pattern = this.pattern.replace(/\\/g, "/");
}
@@ -117523,7 +117532,10 @@ var require_commonjs20 = __commonJS({
const isUNC = s[0] === "" && s[1] === "" && (s[2] === "?" || !globMagic.test(s[2])) && !globMagic.test(s[3]);
const isDrive = /^[a-z]:/i.test(s[0]);
if (isUNC) {
return [...s.slice(0, 4), ...s.slice(4).map((ss) => this.parse(ss))];
return [
...s.slice(0, 4),
...s.slice(4).map((ss) => this.parse(ss))
];
} else if (isDrive) {
return [s[0], ...s.slice(1).map((ss) => this.parse(ss))];
}
@@ -117804,7 +117816,10 @@ var require_commonjs20 = __commonJS({
const fdi = fileUNC ? 3 : fileDrive ? 0 : void 0;
const pdi = patternUNC ? 3 : patternDrive ? 0 : void 0;
if (typeof fdi === "number" && typeof pdi === "number") {
const [fd, pd] = [file[fdi], pattern[pdi]];
const [fd, pd] = [
file[fdi],
pattern[pdi]
];
if (fd.toLowerCase() === pd.toLowerCase()) {
pattern[pdi] = fd;
if (pdi > fdi) {

1
lib/init-action.js generated
View File

@@ -49669,6 +49669,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;

View File

@@ -49518,6 +49518,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;

View File

@@ -48221,6 +48221,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;

View File

@@ -49518,6 +49518,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;
@@ -102209,6 +102210,7 @@ var require_minimatch2 = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
this.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;
@@ -115035,9 +115037,9 @@ var require_isPlainObject = __commonJS({
}
});
// node_modules/@isaacs/balanced-match/dist/commonjs/index.js
// node_modules/glob/node_modules/balanced-match/dist/commonjs/index.js
var require_commonjs18 = __commonJS({
"node_modules/@isaacs/balanced-match/dist/commonjs/index.js"(exports2) {
"node_modules/glob/node_modules/balanced-match/dist/commonjs/index.js"(exports2) {
"use strict";
Object.defineProperty(exports2, "__esModule", { value: true });
exports2.range = exports2.balanced = void 0;
@@ -115097,9 +115099,9 @@ var require_commonjs18 = __commonJS({
}
});
// node_modules/@isaacs/brace-expansion/dist/commonjs/index.js
// node_modules/glob/node_modules/brace-expansion/dist/commonjs/index.js
var require_commonjs19 = __commonJS({
"node_modules/@isaacs/brace-expansion/dist/commonjs/index.js"(exports2) {
"node_modules/glob/node_modules/brace-expansion/dist/commonjs/index.js"(exports2) {
"use strict";
Object.defineProperty(exports2, "__esModule", { value: true });
exports2.EXPANSION_MAX = void 0;
@@ -115860,6 +115862,7 @@ var require_ast = __commonJS({
let escaping = false;
let re = "";
let uflag = false;
let inStar = false;
for (let i = 0; i < glob2.length; i++) {
const c = glob2.charAt(i);
if (escaping) {
@@ -115867,6 +115870,16 @@ var require_ast = __commonJS({
re += (reSpecials.has(c) ? "\\" : "") + c;
continue;
}
if (c === "*") {
if (inStar)
continue;
inStar = true;
re += noEmpty && /^[*]+$/.test(glob2) ? starNoEmpty : star;
hasMagic = true;
continue;
} else {
inStar = false;
}
if (c === "\\") {
if (i === glob2.length - 1) {
re += "\\\\";
@@ -115885,11 +115898,6 @@ var require_ast = __commonJS({
continue;
}
}
if (c === "*") {
re += noEmpty && glob2 === "*" ? starNoEmpty : star;
hasMagic = true;
continue;
}
if (c === "?") {
re += qmark;
hasMagic = true;
@@ -116049,7 +116057,7 @@ var require_commonjs20 = __commonJS({
if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
return [pattern];
}
return (0, brace_expansion_1.expand)(pattern);
return (0, brace_expansion_1.expand)(pattern, { max: options.braceExpandMax });
};
exports2.braceExpand = braceExpand;
exports2.minimatch.braceExpand = exports2.braceExpand;
@@ -116093,7 +116101,8 @@ var require_commonjs20 = __commonJS({
this.pattern = pattern;
this.platform = options.platform || defaultPlatform;
this.isWindows = this.platform === "win32";
this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || options.allowWindowsEscape === false;
const awe = "allowWindowsEscape";
this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || options[awe] === false;
if (this.windowsPathsNoEscape) {
this.pattern = this.pattern.replace(/\\/g, "/");
}
@@ -116150,7 +116159,10 @@ var require_commonjs20 = __commonJS({
const isUNC = s[0] === "" && s[1] === "" && (s[2] === "?" || !globMagic.test(s[2])) && !globMagic.test(s[3]);
const isDrive = /^[a-z]:/i.test(s[0]);
if (isUNC) {
return [...s.slice(0, 4), ...s.slice(4).map((ss) => this.parse(ss))];
return [
...s.slice(0, 4),
...s.slice(4).map((ss) => this.parse(ss))
];
} else if (isDrive) {
return [s[0], ...s.slice(1).map((ss) => this.parse(ss))];
}
@@ -116431,7 +116443,10 @@ var require_commonjs20 = __commonJS({
const fdi = fileUNC ? 3 : fileDrive ? 0 : void 0;
const pdi = patternUNC ? 3 : patternDrive ? 0 : void 0;
if (typeof fdi === "number" && typeof pdi === "number") {
const [fd, pd] = [file[fdi], pattern[pdi]];
const [fd, pd] = [
file[fdi],
pattern[pdi]
];
if (fd.toLowerCase() === pd.toLowerCase()) {
pattern[pdi] = fd;
if (pdi > fdi) {

View File

@@ -48221,6 +48221,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;

1
lib/upload-lib.js generated
View File

@@ -49518,6 +49518,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;

View File

@@ -94492,6 +94492,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
this.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;
@@ -107318,9 +107319,9 @@ var require_isPlainObject = __commonJS({
}
});
// node_modules/@isaacs/balanced-match/dist/commonjs/index.js
// node_modules/glob/node_modules/balanced-match/dist/commonjs/index.js
var require_commonjs18 = __commonJS({
"node_modules/@isaacs/balanced-match/dist/commonjs/index.js"(exports2) {
"node_modules/glob/node_modules/balanced-match/dist/commonjs/index.js"(exports2) {
"use strict";
Object.defineProperty(exports2, "__esModule", { value: true });
exports2.range = exports2.balanced = void 0;
@@ -107380,9 +107381,9 @@ var require_commonjs18 = __commonJS({
}
});
// node_modules/@isaacs/brace-expansion/dist/commonjs/index.js
// node_modules/glob/node_modules/brace-expansion/dist/commonjs/index.js
var require_commonjs19 = __commonJS({
"node_modules/@isaacs/brace-expansion/dist/commonjs/index.js"(exports2) {
"node_modules/glob/node_modules/brace-expansion/dist/commonjs/index.js"(exports2) {
"use strict";
Object.defineProperty(exports2, "__esModule", { value: true });
exports2.EXPANSION_MAX = void 0;
@@ -108143,6 +108144,7 @@ var require_ast = __commonJS({
let escaping = false;
let re = "";
let uflag = false;
let inStar = false;
for (let i = 0; i < glob2.length; i++) {
const c = glob2.charAt(i);
if (escaping) {
@@ -108150,6 +108152,16 @@ var require_ast = __commonJS({
re += (reSpecials.has(c) ? "\\" : "") + c;
continue;
}
if (c === "*") {
if (inStar)
continue;
inStar = true;
re += noEmpty && /^[*]+$/.test(glob2) ? starNoEmpty : star;
hasMagic = true;
continue;
} else {
inStar = false;
}
if (c === "\\") {
if (i === glob2.length - 1) {
re += "\\\\";
@@ -108168,11 +108180,6 @@ var require_ast = __commonJS({
continue;
}
}
if (c === "*") {
re += noEmpty && glob2 === "*" ? starNoEmpty : star;
hasMagic = true;
continue;
}
if (c === "?") {
re += qmark;
hasMagic = true;
@@ -108332,7 +108339,7 @@ var require_commonjs20 = __commonJS({
if (options.nobrace || !/\{(?:(?!\{).)*\}/.test(pattern)) {
return [pattern];
}
return (0, brace_expansion_1.expand)(pattern);
return (0, brace_expansion_1.expand)(pattern, { max: options.braceExpandMax });
};
exports2.braceExpand = braceExpand;
exports2.minimatch.braceExpand = exports2.braceExpand;
@@ -108376,7 +108383,8 @@ var require_commonjs20 = __commonJS({
this.pattern = pattern;
this.platform = options.platform || defaultPlatform;
this.isWindows = this.platform === "win32";
this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || options.allowWindowsEscape === false;
const awe = "allowWindowsEscape";
this.windowsPathsNoEscape = !!options.windowsPathsNoEscape || options[awe] === false;
if (this.windowsPathsNoEscape) {
this.pattern = this.pattern.replace(/\\/g, "/");
}
@@ -108433,7 +108441,10 @@ var require_commonjs20 = __commonJS({
const isUNC = s[0] === "" && s[1] === "" && (s[2] === "?" || !globMagic.test(s[2])) && !globMagic.test(s[3]);
const isDrive = /^[a-z]:/i.test(s[0]);
if (isUNC) {
return [...s.slice(0, 4), ...s.slice(4).map((ss) => this.parse(ss))];
return [
...s.slice(0, 4),
...s.slice(4).map((ss) => this.parse(ss))
];
} else if (isDrive) {
return [s[0], ...s.slice(1).map((ss) => this.parse(ss))];
}
@@ -108714,7 +108725,10 @@ var require_commonjs20 = __commonJS({
const fdi = fileUNC ? 3 : fileDrive ? 0 : void 0;
const pdi = patternUNC ? 3 : patternDrive ? 0 : void 0;
if (typeof fdi === "number" && typeof pdi === "number") {
const [fd, pd] = [file[fdi], pattern[pdi]];
const [fd, pd] = [
file[fdi],
pattern[pdi]
];
if (fd.toLowerCase() === pd.toLowerCase()) {
pattern[pdi] = fd;
if (pdi > fdi) {
@@ -150931,6 +150945,7 @@ var require_minimatch2 = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;

View File

@@ -48221,6 +48221,7 @@ var require_minimatch = __commonJS({
re += c;
continue;
}
if (c === "*" && stateChar === "*") continue;
self2.debug("call clearStateChar %j", stateChar);
clearStateChar();
stateChar = c;

95
package-lock.json generated
View File

@@ -1607,27 +1607,6 @@
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@isaacs/balanced-match": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
"integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==",
"license": "MIT",
"engines": {
"node": "20 || >=22"
}
},
"node_modules/@isaacs/brace-expansion": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.1.tgz",
"integrity": "sha512-WMz71T1JS624nWj2n2fnYAuPovhv7EUhk69R6i9dsVyzxt5eM3bjwvgk9L+APE1TRscGysAVMANkB0jh0LQZrQ==",
"license": "MIT",
"dependencies": {
"@isaacs/balanced-match": "^4.0.1"
},
"engines": {
"node": "20 || >=22"
}
},
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
@@ -2807,14 +2786,27 @@
"typescript": ">=4.8.4 <6.0.0"
}
},
"node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
"dev": true,
"license": "MIT",
"engines": {
"node": "18 || 20 || >=22"
}
},
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.3.tgz",
"integrity": "sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==",
"dev": true,
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0"
"balanced-match": "^4.0.2"
},
"engines": {
"node": "18 || 20 || >=22"
}
},
"node_modules/@typescript-eslint/typescript-estree/node_modules/debug": {
@@ -2836,13 +2828,13 @@
}
},
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
"version": "9.0.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"version": "9.0.6",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.6.tgz",
"integrity": "sha512-kQAVowdR33euIqeA0+VZTDqU+qo1IeVY+hrKYtZMio3Pg0P0vuh/kwRylLUddJhB6pf3q/botcOvRtx4IN1wqQ==",
"dev": true,
"license": "ISC",
"dependencies": {
"brace-expansion": "^2.0.1"
"brace-expansion": "^5.0.2"
},
"engines": {
"node": ">=16 || 14 >=14.17"
@@ -6010,16 +6002,37 @@
"node": ">= 6"
}
},
"node_modules/glob/node_modules/minimatch": {
"version": "10.1.1",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.1.1.tgz",
"integrity": "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==",
"license": "BlueOak-1.0.0",
"node_modules/glob/node_modules/balanced-match": {
"version": "4.0.4",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
"license": "MIT",
"engines": {
"node": "18 || 20 || >=22"
}
},
"node_modules/glob/node_modules/brace-expansion": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.3.tgz",
"integrity": "sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==",
"license": "MIT",
"dependencies": {
"@isaacs/brace-expansion": "^5.0.0"
"balanced-match": "^4.0.2"
},
"engines": {
"node": "20 || >=22"
"node": "18 || 20 || >=22"
}
},
"node_modules/glob/node_modules/minimatch": {
"version": "10.2.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.2.tgz",
"integrity": "sha512-+G4CpNBxa5MprY+04MbgOw1v7So6n5JY166pFi9KfYwT78fxScCeSNQSNzp6dpPSW2rONOps6Ocam1wFhCgoVw==",
"license": "BlueOak-1.0.0",
"dependencies": {
"brace-expansion": "^5.0.2"
},
"engines": {
"node": "18 || 20 || >=22"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
@@ -7227,7 +7240,9 @@
}
},
"node_modules/minimatch": {
"version": "3.1.2",
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.3.tgz",
"integrity": "sha512-M2GCs7Vk83NxkUyQV1bkABc4yxgz9kILhHImZiBPAZ9ybuvCb0/H7lEl5XvIg3g+9d4eNotkZA5IWwYl0tibaA==",
"license": "ISC",
"dependencies": {
"brace-expansion": "^1.1.7"
@@ -7913,9 +7928,9 @@
}
},
"node_modules/readdir-glob/node_modules/minimatch": {
"version": "5.1.6",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
"version": "5.1.7",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.7.tgz",
"integrity": "sha512-FjiwU9HaHW6YB3H4a1sFudnv93lvydNjz2lmyUXR6IwKhGI+bgL3SOZrBGn6kvvX2pJvhEkGSGjyTHN47O4rqA==",
"license": "ISC",
"dependencies": {
"brace-expansion": "^2.0.1"