Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2023-07-13 09:09:17 +00:00
parent 4fad06f438
commit 40a500c743
4168 changed files with 298222 additions and 374905 deletions

6
node_modules/micromatch/index.js generated vendored
View file

@ -155,10 +155,10 @@ micromatch.not = (list, patterns, options = {}) => {
items.push(state.output);
};
let matches = micromatch(list, patterns, { ...options, onResult });
let matches = new Set(micromatch(list, patterns, { ...options, onResult }));
for (let item of items) {
if (!matches.includes(item)) {
if (!matches.has(item)) {
result.add(item);
}
}
@ -408,7 +408,7 @@ micromatch.scan = (...args) => picomatch.scan(...args);
*
* ```js
* const mm = require('micromatch');
* const state = mm(pattern[, options]);
* const state = mm.parse(pattern[, options]);
* ```
* @param {String} `glob`
* @param {Object} `options`