v3 new release (#84)

swap to graphql
This commit is contained in:
github-actions[bot]
2022-07-11 13:48:02 -04:00
committed by GitHub
parent 20d2b4f98d
commit e4f3964f67
1492 changed files with 63799 additions and 63001 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`