Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2024-02-26 18:08:09 +00:00
parent 36f1104e11
commit 66c3cec3e8
167 changed files with 6046 additions and 3631 deletions

View file

@ -646,38 +646,7 @@ class ConfigArray extends Array {
* are additional keys, then ignores act like exclusions.
*/
if (config.ignores && Object.keys(config).length === 1) {
/*
* If there are directory ignores, then we need to double up
* the patterns to be ignored. For instance, `foo` will also
* need `foo/**` in order to account for subdirectories.
*/
config.ignores.forEach(ignore => {
result.push(ignore);
if (typeof ignore === 'string') {
// unignoring files won't work unless we unignore directories too
if (ignore.startsWith('!')) {
if (ignore.endsWith('/**')) {
result.push(ignore.slice(0, ignore.length - 3));
} else if (ignore.endsWith('/*')) {
result.push(ignore.slice(0, ignore.length - 2));
}
}
// directories should work with or without a trailing slash
if (ignore.endsWith('/')) {
result.push(ignore.slice(0, ignore.length - 1));
result.push(ignore + '**');
} else if (!ignore.endsWith('*')) {
result.push(ignore + '/**');
}
}
});
result.push(...config.ignores);
}
}

View file

@ -1,6 +1,6 @@
{
"name": "@humanwhocodes/config-array",
"version": "0.11.13",
"version": "0.11.14",
"description": "Glob-based configuration matching.",
"author": "Nicholas C. Zakas",
"main": "api.js",
@ -42,15 +42,15 @@
"node": ">=10.10.0"
},
"dependencies": {
"@humanwhocodes/object-schema": "^2.0.1",
"debug": "^4.1.1",
"@humanwhocodes/object-schema": "^2.0.2",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
},
"devDependencies": {
"@nitpik/javascript": "0.4.0",
"@nitpik/node": "0.0.5",
"chai": "4.3.10",
"eslint": "8.51.0",
"eslint": "8.52.0",
"esm": "3.2.25",
"lint-staged": "15.0.2",
"mocha": "6.2.3",

View file

@ -1,5 +1,12 @@
# Changelog
## [2.0.2](https://github.com/humanwhocodes/object-schema/compare/v2.0.1...v2.0.2) (2024-01-10)
### Bug Fixes
* WrapperError should be an actual error ([2523f01](https://github.com/humanwhocodes/object-schema/commit/2523f014168167e5a40bb63e0cc03231b2c0f1bf))
## [2.0.1](https://github.com/humanwhocodes/object-schema/compare/v2.0.0...v2.0.1) (2023-10-20)

View file

@ -1,6 +1,6 @@
{
"name": "@humanwhocodes/object-schema",
"version": "2.0.1",
"version": "2.0.2",
"description": "An object schema merger/validator",
"main": "src/index.js",
"directories": {

View file

@ -112,7 +112,7 @@ class MissingDependentKeysError extends Error {
/**
* Wrapper error for errors occuring during a merge or validate operation.
*/
class WrapperError {
class WrapperError extends Error {
/**
* Creates a new instance.
@ -120,14 +120,14 @@ class WrapperError {
* @param {Error} source The source error.
*/
constructor(key, source) {
return Object.create(source, {
message: {
value: `Key "${key}": ` + source.message,
configurable: true,
writable: true,
enumerable: true
super(`Key "${key}": ${source.message}`, { cause: source });
// copy over custom properties that aren't represented
for (const key of Object.keys(source)) {
if (!(key in this)) {
this[key] = source[key];
}
});
}
}
}