Merge pull request #2 from richardrigutins/dependabot/npm_and_yarn/glob-10.3.1
chore(deps): bump glob from 10.3.0 to 10.3.1
This commit is contained in:
commit
4d1e020ff2
|
|
@ -7696,6 +7696,29 @@ class PathBase {
|
||||||
isUnknown() {
|
isUnknown() {
|
||||||
return (this.#type & IFMT) === UNKNOWN;
|
return (this.#type & IFMT) === UNKNOWN;
|
||||||
}
|
}
|
||||||
|
isType(type) {
|
||||||
|
return this[`is${type}`]();
|
||||||
|
}
|
||||||
|
getType() {
|
||||||
|
return this.isUnknown()
|
||||||
|
? 'Unknown'
|
||||||
|
: this.isDirectory()
|
||||||
|
? 'Directory'
|
||||||
|
: this.isFile()
|
||||||
|
? 'File'
|
||||||
|
: this.isSymbolicLink()
|
||||||
|
? 'SymbolicLink'
|
||||||
|
: this.isFIFO()
|
||||||
|
? 'FIFO'
|
||||||
|
: this.isCharacterDevice()
|
||||||
|
? 'CharacterDevice'
|
||||||
|
: this.isBlockDevice()
|
||||||
|
? 'BlockDevice'
|
||||||
|
: /* c8 ignore start */ this.isSocket()
|
||||||
|
? 'Socket'
|
||||||
|
: 'Unknown';
|
||||||
|
/* c8 ignore stop */
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Is the Path a regular file?
|
* Is the Path a regular file?
|
||||||
*/
|
*/
|
||||||
|
|
@ -10267,7 +10290,7 @@ class LRUCache {
|
||||||
const pcall = (res, rej) => {
|
const pcall = (res, rej) => {
|
||||||
const fmp = this.#fetchMethod?.(k, v, fetchOpts);
|
const fmp = this.#fetchMethod?.(k, v, fetchOpts);
|
||||||
if (fmp && fmp instanceof Promise) {
|
if (fmp && fmp instanceof Promise) {
|
||||||
fmp.then(v => res(v), rej);
|
fmp.then(v => res(v === undefined ? undefined : v), rej);
|
||||||
}
|
}
|
||||||
// ignored, we go until we finish, regardless.
|
// ignored, we go until we finish, regardless.
|
||||||
// defer check until we are actually aborting,
|
// defer check until we are actually aborting,
|
||||||
|
|
@ -10275,7 +10298,7 @@ class LRUCache {
|
||||||
ac.signal.addEventListener('abort', () => {
|
ac.signal.addEventListener('abort', () => {
|
||||||
if (!options.ignoreFetchAbort ||
|
if (!options.ignoreFetchAbort ||
|
||||||
options.allowStaleOnFetchAbort) {
|
options.allowStaleOnFetchAbort) {
|
||||||
res();
|
res(undefined);
|
||||||
// when it eventually resolves, update the cache.
|
// when it eventually resolves, update the cache.
|
||||||
if (options.allowStaleOnFetchAbort) {
|
if (options.allowStaleOnFetchAbort) {
|
||||||
res = v => cb(v, true);
|
res = v => cb(v, true);
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -10,7 +10,7 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.10.0",
|
"@actions/core": "^1.10.0",
|
||||||
"glob": "^10.3.0"
|
"glob": "^10.3.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "^29.5.2",
|
"@types/jest": "^29.5.2",
|
||||||
|
|
@ -3759,15 +3759,15 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/glob": {
|
"node_modules/glob": {
|
||||||
"version": "10.3.0",
|
"version": "10.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz",
|
||||||
"integrity": "sha512-AQ1/SB9HH0yCx1jXAT4vmCbTOPe5RQ+kCurjbel5xSCGhebumUv+GJZfa1rEqor3XIViqwSEmlkZCQD43RWrBg==",
|
"integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"foreground-child": "^3.1.0",
|
"foreground-child": "^3.1.0",
|
||||||
"jackspeak": "^2.0.3",
|
"jackspeak": "^2.0.3",
|
||||||
"minimatch": "^9.0.1",
|
"minimatch": "^9.0.1",
|
||||||
"minipass": "^5.0.0 || ^6.0.2",
|
"minipass": "^5.0.0 || ^6.0.2",
|
||||||
"path-scurry": "^1.7.0"
|
"path-scurry": "^1.10.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"glob": "dist/cjs/src/bin.js"
|
"glob": "dist/cjs/src/bin.js"
|
||||||
|
|
@ -5803,11 +5803,11 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/path-scurry": {
|
"node_modules/path-scurry": {
|
||||||
"version": "1.9.2",
|
"version": "1.10.0",
|
||||||
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.9.2.tgz",
|
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.0.tgz",
|
||||||
"integrity": "sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg==",
|
"integrity": "sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lru-cache": "^9.1.1",
|
"lru-cache": "^9.1.1 || ^10.0.0",
|
||||||
"minipass": "^5.0.0 || ^6.0.2"
|
"minipass": "^5.0.0 || ^6.0.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -5818,9 +5818,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/path-scurry/node_modules/lru-cache": {
|
"node_modules/path-scurry/node_modules/lru-cache": {
|
||||||
"version": "9.1.2",
|
"version": "10.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.0.tgz",
|
||||||
"integrity": "sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ==",
|
"integrity": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "14 || >=16.14"
|
"node": "14 || >=16.14"
|
||||||
}
|
}
|
||||||
|
|
@ -9689,15 +9689,15 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"glob": {
|
"glob": {
|
||||||
"version": "10.3.0",
|
"version": "10.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.1.tgz",
|
||||||
"integrity": "sha512-AQ1/SB9HH0yCx1jXAT4vmCbTOPe5RQ+kCurjbel5xSCGhebumUv+GJZfa1rEqor3XIViqwSEmlkZCQD43RWrBg==",
|
"integrity": "sha512-9BKYcEeIs7QwlCYs+Y3GBvqAMISufUS0i2ELd11zpZjxI5V9iyRj0HgzB5/cLf2NY4vcYBTYzJ7GIui7j/4DOw==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"foreground-child": "^3.1.0",
|
"foreground-child": "^3.1.0",
|
||||||
"jackspeak": "^2.0.3",
|
"jackspeak": "^2.0.3",
|
||||||
"minimatch": "^9.0.1",
|
"minimatch": "^9.0.1",
|
||||||
"minipass": "^5.0.0 || ^6.0.2",
|
"minipass": "^5.0.0 || ^6.0.2",
|
||||||
"path-scurry": "^1.7.0"
|
"path-scurry": "^1.10.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"brace-expansion": {
|
"brace-expansion": {
|
||||||
|
|
@ -11201,18 +11201,18 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"path-scurry": {
|
"path-scurry": {
|
||||||
"version": "1.9.2",
|
"version": "1.10.0",
|
||||||
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.9.2.tgz",
|
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.0.tgz",
|
||||||
"integrity": "sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg==",
|
"integrity": "sha512-tZFEaRQbMLjwrsmidsGJ6wDMv0iazJWk6SfIKnY4Xru8auXgmJkOBa5DUbYFcFD2Rzk2+KDlIiF0GVXNCbgC7g==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"lru-cache": "^9.1.1",
|
"lru-cache": "^9.1.1 || ^10.0.0",
|
||||||
"minipass": "^5.0.0 || ^6.0.2"
|
"minipass": "^5.0.0 || ^6.0.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"lru-cache": {
|
"lru-cache": {
|
||||||
"version": "9.1.2",
|
"version": "10.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.0.tgz",
|
||||||
"integrity": "sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ=="
|
"integrity": "sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw=="
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.10.0",
|
"@actions/core": "^1.10.0",
|
||||||
"glob": "^10.3.0"
|
"glob": "^10.3.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "^29.5.2",
|
"@types/jest": "^29.5.2",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue