Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2023-10-23 18:03:04 +00:00
parent 79817eb679
commit 9c3b394d7f
402 changed files with 12598 additions and 2912 deletions

View file

@ -825,12 +825,12 @@ class ConfigArray extends Array {
const cache = this[ConfigArraySymbol.configCache];
// first check the cache for a filename match to avoid duplicate work
let finalConfig = cache.get(filePath);
if (finalConfig) {
return finalConfig;
if (cache.has(filePath)) {
return cache.get(filePath);
}
let finalConfig;
// next check to see if the file should be ignored
// check if this should be ignored due to its directory

View file

@ -1,6 +1,6 @@
{
"name": "@humanwhocodes/config-array",
"version": "0.11.11",
"version": "0.11.13",
"description": "Glob-based configuration matching.",
"author": "Nicholas C. Zakas",
"main": "api.js",
@ -42,19 +42,19 @@
"node": ">=10.10.0"
},
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"@humanwhocodes/object-schema": "^2.0.1",
"debug": "^4.1.1",
"minimatch": "^3.0.5"
},
"devDependencies": {
"@nitpik/javascript": "0.4.0",
"@nitpik/node": "0.0.5",
"chai": "4.3.8",
"eslint": "8.41.0",
"chai": "4.3.10",
"eslint": "8.51.0",
"esm": "3.2.25",
"lint-staged": "14.0.1",
"lint-staged": "15.0.2",
"mocha": "6.2.3",
"nyc": "14.1.1",
"nyc": "15.1.0",
"rollup": "3.28.1",
"yorkie": "2.0.0"
}