Update minimatch dependency to version 10.2.6 and adjust module paths

This commit is contained in:
HarithaVattikuti
2026-09-23 15:03:26 -05:00
parent 33fda8f0e3
commit 729843376e
3 changed files with 14 additions and 14 deletions
@@ -1,10 +1,10 @@
--- ---
name: minimatch name: minimatch
version: 10.2.5 version: 10.2.6
type: npm type: npm
summary: a glob matcher in javascript summary: a glob matcher in javascript
homepage: homepage:
license: blueoak-1.0.0 license: other
licenses: licenses:
- sources: LICENSE.md - sources: LICENSE.md
text: | text: |
+6 -6
View File
@@ -90093,7 +90093,7 @@ function expand_(str, max, maxLength, isTop) {
return acc; return acc;
} }
//# sourceMappingURL=index.js.map //# sourceMappingURL=index.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/assert-valid-pattern.js
const MAX_PATTERN_LENGTH = 1024 * 64; const MAX_PATTERN_LENGTH = 1024 * 64;
const assertValidPattern = (pattern) => { const assertValidPattern = (pattern) => {
if (typeof pattern !== 'string') { if (typeof pattern !== 'string') {
@@ -90104,7 +90104,7 @@ const assertValidPattern = (pattern) => {
} }
}; };
//# sourceMappingURL=assert-valid-pattern.js.map //# sourceMappingURL=assert-valid-pattern.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/brace-expressions.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/brace-expressions.js
// translate the various posix character classes into unicode properties // translate the various posix character classes into unicode properties
// this works across all unicode locales // this works across all unicode locales
// { <posix class>: [<translation>, /u flag required, negated] // { <posix class>: [<translation>, /u flag required, negated]
@@ -90251,7 +90251,7 @@ const parseClass = (glob, position) => {
return [comb, uflag, endPos - pos, true]; return [comb, uflag, endPos - pos, true];
}; };
//# sourceMappingURL=brace-expressions.js.map //# sourceMappingURL=brace-expressions.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/unescape.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/unescape.js
/** /**
* Un-escape a string that has been escaped with {@link escape}. * Un-escape a string that has been escaped with {@link escape}.
* *
@@ -90286,7 +90286,7 @@ const unescape_unescape = (s, { windowsPathsNoEscape = false, magicalBraces = tr
.replace(/\\([^/{}])/g, '$1'); .replace(/\\([^/{}])/g, '$1');
}; };
//# sourceMappingURL=unescape.js.map //# sourceMappingURL=unescape.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/ast.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/ast.js
// parse a single path portion // parse a single path portion
var _a; var _a;
@@ -91128,7 +91128,7 @@ class AST {
} }
_a = AST; _a = AST;
//# sourceMappingURL=ast.js.map //# sourceMappingURL=ast.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/escape.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/escape.js
/** /**
* Escape all magic characters in a glob pattern. * Escape all magic characters in a glob pattern.
* *
@@ -91155,7 +91155,7 @@ const escape_escape = (s, { windowsPathsNoEscape = false, magicalBraces = false,
: s.replace(/[?*()[\]\\]/g, '\\$&'); : s.replace(/[?*()[\]\\]/g, '\\$&');
}; };
//# sourceMappingURL=escape.js.map //# sourceMappingURL=escape.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/index.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/index.js
+6 -6
View File
@@ -95461,7 +95461,7 @@ function expand_(str, max, maxLength, isTop) {
return acc; return acc;
} }
//# sourceMappingURL=index.js.map //# sourceMappingURL=index.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/assert-valid-pattern.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/assert-valid-pattern.js
const MAX_PATTERN_LENGTH = 1024 * 64; const MAX_PATTERN_LENGTH = 1024 * 64;
const assertValidPattern = (pattern) => { const assertValidPattern = (pattern) => {
if (typeof pattern !== 'string') { if (typeof pattern !== 'string') {
@@ -95472,7 +95472,7 @@ const assertValidPattern = (pattern) => {
} }
}; };
//# sourceMappingURL=assert-valid-pattern.js.map //# sourceMappingURL=assert-valid-pattern.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/brace-expressions.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/brace-expressions.js
// translate the various posix character classes into unicode properties // translate the various posix character classes into unicode properties
// this works across all unicode locales // this works across all unicode locales
// { <posix class>: [<translation>, /u flag required, negated] // { <posix class>: [<translation>, /u flag required, negated]
@@ -95619,7 +95619,7 @@ const parseClass = (glob, position) => {
return [comb, uflag, endPos - pos, true]; return [comb, uflag, endPos - pos, true];
}; };
//# sourceMappingURL=brace-expressions.js.map //# sourceMappingURL=brace-expressions.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/unescape.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/unescape.js
/** /**
* Un-escape a string that has been escaped with {@link escape}. * Un-escape a string that has been escaped with {@link escape}.
* *
@@ -95654,7 +95654,7 @@ const unescape_unescape = (s, { windowsPathsNoEscape = false, magicalBraces = tr
.replace(/\\([^/{}])/g, '$1'); .replace(/\\([^/{}])/g, '$1');
}; };
//# sourceMappingURL=unescape.js.map //# sourceMappingURL=unescape.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/ast.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/ast.js
// parse a single path portion // parse a single path portion
var _a; var _a;
@@ -96496,7 +96496,7 @@ class AST {
} }
_a = AST; _a = AST;
//# sourceMappingURL=ast.js.map //# sourceMappingURL=ast.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/escape.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/escape.js
/** /**
* Escape all magic characters in a glob pattern. * Escape all magic characters in a glob pattern.
* *
@@ -96523,7 +96523,7 @@ const escape_escape = (s, { windowsPathsNoEscape = false, magicalBraces = false,
: s.replace(/[?*()[\]\\]/g, '\\$&'); : s.replace(/[?*()[\]\\]/g, '\\$&');
}; };
//# sourceMappingURL=escape.js.map //# sourceMappingURL=escape.js.map
;// CONCATENATED MODULE: ./node_modules/@actions/glob/node_modules/minimatch/dist/esm/index.js ;// CONCATENATED MODULE: ./node_modules/minimatch/dist/esm/index.js