@qraft/asyncapi-plugin 1.0.0-beta.6 → 1.0.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/_vendor/@stoplight/json-ref-resolver/index.js +1 -1
- package/dist/_vendor/@stoplight/spectral-core/_vendor/brace-expansion/index.js +13 -10
- package/dist/_vendor/@stoplight/spectral-core/_vendor/brace-expansion/index.js.map +1 -1
- package/dist/_vendor/@stoplight/spectral-core/_vendor/minimatch/minimatch.js +160 -102
- package/dist/_vendor/@stoplight/spectral-core/_vendor/minimatch/minimatch.js.map +1 -1
- package/dist/_vendor/@stoplight/spectral-core/dist/runner/index.js +1 -1
- package/dist/_vendor/@stoplight/spectral-core/dist/types/index.js +1 -1
- package/dist/_vendor/@stoplight/spectral-functions/dist/index.js +1 -1
- package/dist/_vendor/@stoplight/spectral-runtime/dist/utils/index.js +1 -1
- package/dist/_vendor/@stoplight/yaml/index.js +1 -1
- package/dist/_vendor/ajv/dist/refs/json-schema-2019-09/index.js +1 -1
- package/dist/_vendor/ajv/dist/refs/json-schema-2020-12/index.js +1 -1
- package/dist/_vendor/ajv/dist/vocabularies/applicator/index.js +1 -1
- package/dist/_vendor/ajv/dist/vocabularies/core/index.js +1 -1
- package/dist/_vendor/ajv/dist/vocabularies/format/index.js +1 -1
- package/dist/_vendor/ajv/dist/vocabularies/unevaluated/index.js +1 -1
- package/dist/_vendor/ajv/dist/vocabularies/validation/index.js +1 -1
- package/dist/_vendor/fast-uri/index.js +1 -1
- package/dist/_vendor/json-schema-traverse/index.js +1 -1
- package/dist/_vendor/lodash/lodash.js +38 -27
- package/dist/_vendor/lodash/lodash.js.map +1 -1
- package/dist/_vendor/safe-stable-stringify/index.js.map +1 -0
- package/dist/_vendor/safe-stable-stringify/stable.js.map +1 -0
- package/dist/_virtual/index16.js +2 -2
- package/dist/_virtual/index17.js +2 -2
- package/dist/_virtual/index25.js +2 -2
- package/dist/_virtual/index26.js +2 -2
- package/dist/_virtual/index27.js +2 -2
- package/dist/_virtual/index28.js +2 -2
- package/dist/_virtual/index29.js +1 -1
- package/dist/_virtual/index31.js +2 -2
- package/dist/_virtual/index32.js +2 -2
- package/dist/_virtual/index34.js +2 -2
- package/dist/_virtual/index35.js +2 -2
- package/dist/_virtual/index38.js +2 -2
- package/dist/_virtual/index39.js +2 -2
- package/dist/_virtual/index56.js +2 -2
- package/dist/_virtual/index57.js +2 -2
- package/dist/_virtual/index58.js +2 -2
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/package.json +4 -4
- package/src/packageVersion.ts +1 -1
- package/dist/_vendor/@stoplight/json/_vendor/safe-stable-stringify/index.js.map +0 -1
- package/dist/_vendor/@stoplight/json/_vendor/safe-stable-stringify/stable.js.map +0 -1
- /package/dist/_vendor/{@stoplight/json/_vendor/safe-stable-stringify → safe-stable-stringify}/index.js +0 -0
- /package/dist/_vendor/{@stoplight/json/_vendor/safe-stable-stringify → safe-stable-stringify}/stable.js +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"minimatch.js","sources":["../../../../../../../../node_modules/@stoplight/spectral-core/node_modules/minimatch/minimatch.js"],"sourcesContent":["module.exports = minimatch\nminimatch.Minimatch = Minimatch\n\nvar path = (function () { try { return require('path') } catch (e) {}}()) || {\n sep: '/'\n}\nminimatch.sep = path.sep\n\nvar GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {}\nvar expand = require('brace-expansion')\n\nvar plTypes = {\n '!': { open: '(?:(?!(?:', close: '))[^/]*?)'},\n '?': { open: '(?:', close: ')?' },\n '+': { open: '(?:', close: ')+' },\n '*': { open: '(?:', close: ')*' },\n '@': { open: '(?:', close: ')' }\n}\n\n// any single thing other than /\n// don't need to escape / when using new RegExp()\nvar qmark = '[^/]'\n\n// * => any number of characters\nvar star = qmark + '*?'\n\n// ** when dots are allowed. Anything goes, except .. and .\n// not (^ or / followed by one or two dots followed by $ or /),\n// followed by anything, any number of times.\nvar twoStarDot = '(?:(?!(?:\\\\\\/|^)(?:\\\\.{1,2})($|\\\\\\/)).)*?'\n\n// not a ^ or / followed by a dot,\n// followed by anything, any number of times.\nvar twoStarNoDot = '(?:(?!(?:\\\\\\/|^)\\\\.).)*?'\n\n// characters that need to be escaped in RegExp.\nvar reSpecials = charSet('().*{}+?[]^$\\\\!')\n\n// \"abc\" -> { a:true, b:true, c:true }\nfunction charSet (s) {\n return s.split('').reduce(function (set, c) {\n set[c] = true\n return set\n }, {})\n}\n\n// normalizes slashes.\nvar slashSplit = /\\/+/\n\nminimatch.filter = filter\nfunction filter (pattern, options) {\n options = options || {}\n return function (p, i, list) {\n return minimatch(p, pattern, options)\n }\n}\n\nfunction ext (a, b) {\n b = b || {}\n var t = {}\n Object.keys(a).forEach(function (k) {\n t[k] = a[k]\n })\n Object.keys(b).forEach(function (k) {\n t[k] = b[k]\n })\n return t\n}\n\nminimatch.defaults = function (def) {\n if (!def || typeof def !== 'object' || !Object.keys(def).length) {\n return minimatch\n }\n\n var orig = minimatch\n\n var m = function minimatch (p, pattern, options) {\n return orig(p, pattern, ext(def, options))\n }\n\n m.Minimatch = function Minimatch (pattern, options) {\n return new orig.Minimatch(pattern, ext(def, options))\n }\n m.Minimatch.defaults = function defaults (options) {\n return orig.defaults(ext(def, options)).Minimatch\n }\n\n m.filter = function filter (pattern, options) {\n return orig.filter(pattern, ext(def, options))\n }\n\n m.defaults = function defaults (options) {\n return orig.defaults(ext(def, options))\n }\n\n m.makeRe = function makeRe (pattern, options) {\n return orig.makeRe(pattern, ext(def, options))\n }\n\n m.braceExpand = function braceExpand (pattern, options) {\n return orig.braceExpand(pattern, ext(def, options))\n }\n\n m.match = function (list, pattern, options) {\n return orig.match(list, pattern, ext(def, options))\n }\n\n return m\n}\n\nMinimatch.defaults = function (def) {\n return minimatch.defaults(def).Minimatch\n}\n\nfunction minimatch (p, pattern, options) {\n assertValidPattern(pattern)\n\n if (!options) options = {}\n\n // shortcut: comments match nothing.\n if (!options.nocomment && pattern.charAt(0) === '#') {\n return false\n }\n\n return new Minimatch(pattern, options).match(p)\n}\n\nfunction Minimatch (pattern, options) {\n if (!(this instanceof Minimatch)) {\n return new Minimatch(pattern, options)\n }\n\n assertValidPattern(pattern)\n\n if (!options) options = {}\n\n pattern = pattern.trim()\n\n // windows support: need to use /, not \\\n if (!options.allowWindowsEscape && path.sep !== '/') {\n pattern = pattern.split(path.sep).join('/')\n }\n\n this.options = options\n this.set = []\n this.pattern = pattern\n this.regexp = null\n this.negate = false\n this.comment = false\n this.empty = false\n this.partial = !!options.partial\n\n // make the set of regexps etc.\n this.make()\n}\n\nMinimatch.prototype.debug = function () {}\n\nMinimatch.prototype.make = make\nfunction make () {\n var pattern = this.pattern\n var options = this.options\n\n // empty patterns and comments match nothing.\n if (!options.nocomment && pattern.charAt(0) === '#') {\n this.comment = true\n return\n }\n if (!pattern) {\n this.empty = true\n return\n }\n\n // step 1: figure out negation, etc.\n this.parseNegate()\n\n // step 2: expand braces\n var set = this.globSet = this.braceExpand()\n\n if (options.debug) this.debug = function debug() { console.error.apply(console, arguments) }\n\n this.debug(this.pattern, set)\n\n // step 3: now we have a set, so turn each one into a series of path-portion\n // matching patterns.\n // These will be regexps, except in the case of \"**\", which is\n // set to the GLOBSTAR object for globstar behavior,\n // and will not contain any / characters\n set = this.globParts = set.map(function (s) {\n return s.split(slashSplit)\n })\n\n this.debug(this.pattern, set)\n\n // glob --> regexps\n set = set.map(function (s, si, set) {\n return s.map(this.parse, this)\n }, this)\n\n this.debug(this.pattern, set)\n\n // filter out everything that didn't compile properly.\n set = set.filter(function (s) {\n return s.indexOf(false) === -1\n })\n\n this.debug(this.pattern, set)\n\n this.set = set\n}\n\nMinimatch.prototype.parseNegate = parseNegate\nfunction parseNegate () {\n var pattern = this.pattern\n var negate = false\n var options = this.options\n var negateOffset = 0\n\n if (options.nonegate) return\n\n for (var i = 0, l = pattern.length\n ; i < l && pattern.charAt(i) === '!'\n ; i++) {\n negate = !negate\n negateOffset++\n }\n\n if (negateOffset) this.pattern = pattern.substr(negateOffset)\n this.negate = negate\n}\n\n// Brace expansion:\n// a{b,c}d -> abd acd\n// a{b,}c -> abc ac\n// a{0..3}d -> a0d a1d a2d a3d\n// a{b,c{d,e}f}g -> abg acdfg acefg\n// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg\n//\n// Invalid sets are not expanded.\n// a{2..}b -> a{2..}b\n// a{b}c -> a{b}c\nminimatch.braceExpand = function (pattern, options) {\n return braceExpand(pattern, options)\n}\n\nMinimatch.prototype.braceExpand = braceExpand\n\nfunction braceExpand (pattern, options) {\n if (!options) {\n if (this instanceof Minimatch) {\n options = this.options\n } else {\n options = {}\n }\n }\n\n pattern = typeof pattern === 'undefined'\n ? this.pattern : pattern\n\n assertValidPattern(pattern)\n\n // Thanks to Yeting Li <https://github.com/yetingli> for\n // improving this regexp to avoid a ReDOS vulnerability.\n if (options.nobrace || !/\\{(?:(?!\\{).)*\\}/.test(pattern)) {\n // shortcut. no need to expand.\n return [pattern]\n }\n\n return expand(pattern)\n}\n\nvar MAX_PATTERN_LENGTH = 1024 * 64\nvar assertValidPattern = function (pattern) {\n if (typeof pattern !== 'string') {\n throw new TypeError('invalid pattern')\n }\n\n if (pattern.length > MAX_PATTERN_LENGTH) {\n throw new TypeError('pattern is too long')\n }\n}\n\n// parse a component of the expanded set.\n// At this point, no pattern may contain \"/\" in it\n// so we're going to return a 2d array, where each entry is the full\n// pattern, split on '/', and then turned into a regular expression.\n// A regexp is made at the end which joins each array with an\n// escaped /, and another full one which joins each regexp with |.\n//\n// Following the lead of Bash 4.1, note that \"**\" only has special meaning\n// when it is the *only* thing in a path portion. Otherwise, any series\n// of * is equivalent to a single *. Globstar behavior is enabled by\n// default, and can be disabled by setting options.noglobstar.\nMinimatch.prototype.parse = parse\nvar SUBPARSE = {}\nfunction parse (pattern, isSub) {\n assertValidPattern(pattern)\n\n var options = this.options\n\n // shortcuts\n if (pattern === '**') {\n if (!options.noglobstar)\n return GLOBSTAR\n else\n pattern = '*'\n }\n if (pattern === '') return ''\n\n var re = ''\n var hasMagic = !!options.nocase\n var escaping = false\n // ? => one single character\n var patternListStack = []\n var negativeLists = []\n var stateChar\n var inClass = false\n var reClassStart = -1\n var classStart = -1\n // . and .. never match anything that doesn't start with .,\n // even when options.dot is set.\n var patternStart = pattern.charAt(0) === '.' ? '' // anything\n // not (start or / followed by . or .. followed by / or end)\n : options.dot ? '(?!(?:^|\\\\\\/)\\\\.{1,2}(?:$|\\\\\\/))'\n : '(?!\\\\.)'\n var self = this\n\n function clearStateChar () {\n if (stateChar) {\n // we had some state-tracking character\n // that wasn't consumed by this pass.\n switch (stateChar) {\n case '*':\n re += star\n hasMagic = true\n break\n case '?':\n re += qmark\n hasMagic = true\n break\n default:\n re += '\\\\' + stateChar\n break\n }\n self.debug('clearStateChar %j %j', stateChar, re)\n stateChar = false\n }\n }\n\n for (var i = 0, len = pattern.length, c\n ; (i < len) && (c = pattern.charAt(i))\n ; i++) {\n this.debug('%s\\t%s %s %j', pattern, i, re, c)\n\n // skip over any that are escaped.\n if (escaping && reSpecials[c]) {\n re += '\\\\' + c\n escaping = false\n continue\n }\n\n switch (c) {\n /* istanbul ignore next */\n case '/': {\n // completely not allowed, even escaped.\n // Should already be path-split by now.\n return false\n }\n\n case '\\\\':\n clearStateChar()\n escaping = true\n continue\n\n // the various stateChar values\n // for the \"extglob\" stuff.\n case '?':\n case '*':\n case '+':\n case '@':\n case '!':\n this.debug('%s\\t%s %s %j <-- stateChar', pattern, i, re, c)\n\n // all of those are literals inside a class, except that\n // the glob [!a] means [^a] in regexp\n if (inClass) {\n this.debug(' in class')\n if (c === '!' && i === classStart + 1) c = '^'\n re += c\n continue\n }\n\n // if we already have a stateChar, then it means\n // that there was something like ** or +? in there.\n // Handle the stateChar, then proceed with this one.\n self.debug('call clearStateChar %j', stateChar)\n clearStateChar()\n stateChar = c\n // if extglob is disabled, then +(asdf|foo) isn't a thing.\n // just clear the statechar *now*, rather than even diving into\n // the patternList stuff.\n if (options.noext) clearStateChar()\n continue\n\n case '(':\n if (inClass) {\n re += '('\n continue\n }\n\n if (!stateChar) {\n re += '\\\\('\n continue\n }\n\n patternListStack.push({\n type: stateChar,\n start: i - 1,\n reStart: re.length,\n open: plTypes[stateChar].open,\n close: plTypes[stateChar].close\n })\n // negation is (?:(?!js)[^/]*)\n re += stateChar === '!' ? '(?:(?!(?:' : '(?:'\n this.debug('plType %j %j', stateChar, re)\n stateChar = false\n continue\n\n case ')':\n if (inClass || !patternListStack.length) {\n re += '\\\\)'\n continue\n }\n\n clearStateChar()\n hasMagic = true\n var pl = patternListStack.pop()\n // negation is (?:(?!js)[^/]*)\n // The others are (?:<pattern>)<type>\n re += pl.close\n if (pl.type === '!') {\n negativeLists.push(pl)\n }\n pl.reEnd = re.length\n continue\n\n case '|':\n if (inClass || !patternListStack.length || escaping) {\n re += '\\\\|'\n escaping = false\n continue\n }\n\n clearStateChar()\n re += '|'\n continue\n\n // these are mostly the same in regexp and glob\n case '[':\n // swallow any state-tracking char before the [\n clearStateChar()\n\n if (inClass) {\n re += '\\\\' + c\n continue\n }\n\n inClass = true\n classStart = i\n reClassStart = re.length\n re += c\n continue\n\n case ']':\n // a right bracket shall lose its special\n // meaning and represent itself in\n // a bracket expression if it occurs\n // first in the list. -- POSIX.2 2.8.3.2\n if (i === classStart + 1 || !inClass) {\n re += '\\\\' + c\n escaping = false\n continue\n }\n\n // handle the case where we left a class open.\n // \"[z-a]\" is valid, equivalent to \"\\[z-a\\]\"\n // split where the last [ was, make sure we don't have\n // an invalid re. if so, re-walk the contents of the\n // would-be class to re-translate any characters that\n // were passed through as-is\n // TODO: It would probably be faster to determine this\n // without a try/catch and a new RegExp, but it's tricky\n // to do safely. For now, this is safe and works.\n var cs = pattern.substring(classStart + 1, i)\n try {\n RegExp('[' + cs + ']')\n } catch (er) {\n // not a valid class!\n var sp = this.parse(cs, SUBPARSE)\n re = re.substr(0, reClassStart) + '\\\\[' + sp[0] + '\\\\]'\n hasMagic = hasMagic || sp[1]\n inClass = false\n continue\n }\n\n // finish up the class.\n hasMagic = true\n inClass = false\n re += c\n continue\n\n default:\n // swallow any state char that wasn't consumed\n clearStateChar()\n\n if (escaping) {\n // no need\n escaping = false\n } else if (reSpecials[c]\n && !(c === '^' && inClass)) {\n re += '\\\\'\n }\n\n re += c\n\n } // switch\n } // for\n\n // handle the case where we left a class open.\n // \"[abc\" is valid, equivalent to \"\\[abc\"\n if (inClass) {\n // split where the last [ was, and escape it\n // this is a huge pita. We now have to re-walk\n // the contents of the would-be class to re-translate\n // any characters that were passed through as-is\n cs = pattern.substr(classStart + 1)\n sp = this.parse(cs, SUBPARSE)\n re = re.substr(0, reClassStart) + '\\\\[' + sp[0]\n hasMagic = hasMagic || sp[1]\n }\n\n // handle the case where we had a +( thing at the *end*\n // of the pattern.\n // each pattern list stack adds 3 chars, and we need to go through\n // and escape any | chars that were passed through as-is for the regexp.\n // Go through and escape them, taking care not to double-escape any\n // | chars that were already escaped.\n for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {\n var tail = re.slice(pl.reStart + pl.open.length)\n this.debug('setting tail', re, pl)\n // maybe some even number of \\, then maybe 1 \\, followed by a |\n tail = tail.replace(/((?:\\\\{2}){0,64})(\\\\?)\\|/g, function (_, $1, $2) {\n if (!$2) {\n // the | isn't already escaped, so escape it.\n $2 = '\\\\'\n }\n\n // need to escape all those slashes *again*, without escaping the\n // one that we need for escaping the | character. As it works out,\n // escaping an even number of slashes can be done by simply repeating\n // it exactly after itself. That's why this trick works.\n //\n // I am sorry that you have to see this.\n return $1 + $1 + $2 + '|'\n })\n\n this.debug('tail=%j\\n %s', tail, tail, pl, re)\n var t = pl.type === '*' ? star\n : pl.type === '?' ? qmark\n : '\\\\' + pl.type\n\n hasMagic = true\n re = re.slice(0, pl.reStart) + t + '\\\\(' + tail\n }\n\n // handle trailing things that only matter at the very end.\n clearStateChar()\n if (escaping) {\n // trailing \\\\\n re += '\\\\\\\\'\n }\n\n // only need to apply the nodot start if the re starts with\n // something that could conceivably capture a dot\n var addPatternStart = false\n switch (re.charAt(0)) {\n case '[': case '.': case '(': addPatternStart = true\n }\n\n // Hack to work around lack of negative lookbehind in JS\n // A pattern like: *.!(x).!(y|z) needs to ensure that a name\n // like 'a.xyz.yz' doesn't match. So, the first negative\n // lookahead, has to look ALL the way ahead, to the end of\n // the pattern.\n for (var n = negativeLists.length - 1; n > -1; n--) {\n var nl = negativeLists[n]\n\n var nlBefore = re.slice(0, nl.reStart)\n var nlFirst = re.slice(nl.reStart, nl.reEnd - 8)\n var nlLast = re.slice(nl.reEnd - 8, nl.reEnd)\n var nlAfter = re.slice(nl.reEnd)\n\n nlLast += nlAfter\n\n // Handle nested stuff like *(*.js|!(*.json)), where open parens\n // mean that we should *not* include the ) in the bit that is considered\n // \"after\" the negated section.\n var openParensBefore = nlBefore.split('(').length - 1\n var cleanAfter = nlAfter\n for (i = 0; i < openParensBefore; i++) {\n cleanAfter = cleanAfter.replace(/\\)[+*?]?/, '')\n }\n nlAfter = cleanAfter\n\n var dollar = ''\n if (nlAfter === '' && isSub !== SUBPARSE) {\n dollar = '$'\n }\n var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast\n re = newRe\n }\n\n // if the re is not \"\" at this point, then we need to make sure\n // it doesn't match against an empty path part.\n // Otherwise a/* will match a/, which it should not.\n if (re !== '' && hasMagic) {\n re = '(?=.)' + re\n }\n\n if (addPatternStart) {\n re = patternStart + re\n }\n\n // parsing just a piece of a larger pattern.\n if (isSub === SUBPARSE) {\n return [re, hasMagic]\n }\n\n // skip the regexp for non-magical patterns\n // unescape anything in it, though, so that it'll be\n // an exact match against a file etc.\n if (!hasMagic) {\n return globUnescape(pattern)\n }\n\n var flags = options.nocase ? 'i' : ''\n try {\n var regExp = new RegExp('^' + re + '$', flags)\n } catch (er) /* istanbul ignore next - should be impossible */ {\n // If it was an invalid regular expression, then it can't match\n // anything. This trick looks for a character after the end of\n // the string, which is of course impossible, except in multi-line\n // mode, but it's not a /m regex.\n return new RegExp('$.')\n }\n\n regExp._glob = pattern\n regExp._src = re\n\n return regExp\n}\n\nminimatch.makeRe = function (pattern, options) {\n return new Minimatch(pattern, options || {}).makeRe()\n}\n\nMinimatch.prototype.makeRe = makeRe\nfunction makeRe () {\n if (this.regexp || this.regexp === false) return this.regexp\n\n // at this point, this.set is a 2d array of partial\n // pattern strings, or \"**\".\n //\n // It's better to use .match(). This function shouldn't\n // be used, really, but it's pretty convenient sometimes,\n // when you just want to work with a regex.\n var set = this.set\n\n if (!set.length) {\n this.regexp = false\n return this.regexp\n }\n var options = this.options\n\n var twoStar = options.noglobstar ? star\n : options.dot ? twoStarDot\n : twoStarNoDot\n var flags = options.nocase ? 'i' : ''\n\n var re = set.map(function (pattern) {\n return pattern.map(function (p) {\n return (p === GLOBSTAR) ? twoStar\n : (typeof p === 'string') ? regExpEscape(p)\n : p._src\n }).join('\\\\\\/')\n }).join('|')\n\n // must match entire pattern\n // ending in a * or ** will make it less strict.\n re = '^(?:' + re + ')$'\n\n // can match anything, as long as it's not this.\n if (this.negate) re = '^(?!' + re + ').*$'\n\n try {\n this.regexp = new RegExp(re, flags)\n } catch (ex) /* istanbul ignore next - should be impossible */ {\n this.regexp = false\n }\n return this.regexp\n}\n\nminimatch.match = function (list, pattern, options) {\n options = options || {}\n var mm = new Minimatch(pattern, options)\n list = list.filter(function (f) {\n return mm.match(f)\n })\n if (mm.options.nonull && !list.length) {\n list.push(pattern)\n }\n return list\n}\n\nMinimatch.prototype.match = function match (f, partial) {\n if (typeof partial === 'undefined') partial = this.partial\n this.debug('match', f, this.pattern)\n // short-circuit in the case of busted things.\n // comments, etc.\n if (this.comment) return false\n if (this.empty) return f === ''\n\n if (f === '/' && partial) return true\n\n var options = this.options\n\n // windows: need to use /, not \\\n if (path.sep !== '/') {\n f = f.split(path.sep).join('/')\n }\n\n // treat the test path as a set of pathparts.\n f = f.split(slashSplit)\n this.debug(this.pattern, 'split', f)\n\n // just ONE of the pattern sets in this.set needs to match\n // in order for it to be valid. If negating, then just one\n // match means that we have failed.\n // Either way, return on the first hit.\n\n var set = this.set\n this.debug(this.pattern, 'set', set)\n\n // Find the basename of the path by looking for the last non-empty segment\n var filename\n var i\n for (i = f.length - 1; i >= 0; i--) {\n filename = f[i]\n if (filename) break\n }\n\n for (i = 0; i < set.length; i++) {\n var pattern = set[i]\n var file = f\n if (options.matchBase && pattern.length === 1) {\n file = [filename]\n }\n var hit = this.matchOne(file, pattern, partial)\n if (hit) {\n if (options.flipNegate) return true\n return !this.negate\n }\n }\n\n // didn't get any hits. this is success if it's a negative\n // pattern, failure otherwise.\n if (options.flipNegate) return false\n return this.negate\n}\n\n// set partial to true to test if, for example,\n// \"/a/b\" matches the start of \"/*/b/*/d\"\n// Partial means, if you run out of file before you run\n// out of pattern, then that's fine, as long as all\n// the parts match.\nMinimatch.prototype.matchOne = function (file, pattern, partial) {\n var options = this.options\n\n this.debug('matchOne',\n { 'this': this, file: file, pattern: pattern })\n\n this.debug('matchOne', file.length, pattern.length)\n\n for (var fi = 0,\n pi = 0,\n fl = file.length,\n pl = pattern.length\n ; (fi < fl) && (pi < pl)\n ; fi++, pi++) {\n this.debug('matchOne loop')\n var p = pattern[pi]\n var f = file[fi]\n\n this.debug(pattern, p, f)\n\n // should be impossible.\n // some invalid regexp stuff in the set.\n /* istanbul ignore if */\n if (p === false) return false\n\n if (p === GLOBSTAR) {\n this.debug('GLOBSTAR', [pattern, p, f])\n\n // \"**\"\n // a/**/b/**/c would match the following:\n // a/b/x/y/z/c\n // a/x/y/z/b/c\n // a/b/x/b/x/c\n // a/b/c\n // To do this, take the rest of the pattern after\n // the **, and see if it would match the file remainder.\n // If so, return success.\n // If not, the ** \"swallows\" a segment, and try again.\n // This is recursively awful.\n //\n // a/**/b/**/c matching a/b/x/y/z/c\n // - a matches a\n // - doublestar\n // - matchOne(b/x/y/z/c, b/**/c)\n // - b matches b\n // - doublestar\n // - matchOne(x/y/z/c, c) -> no\n // - matchOne(y/z/c, c) -> no\n // - matchOne(z/c, c) -> no\n // - matchOne(c, c) yes, hit\n var fr = fi\n var pr = pi + 1\n if (pr === pl) {\n this.debug('** at the end')\n // a ** at the end will just swallow the rest.\n // We have found a match.\n // however, it will not swallow /.x, unless\n // options.dot is set.\n // . and .. are *never* matched by **, for explosively\n // exponential reasons.\n for (; fi < fl; fi++) {\n if (file[fi] === '.' || file[fi] === '..' ||\n (!options.dot && file[fi].charAt(0) === '.')) return false\n }\n return true\n }\n\n // ok, let's see if we can swallow whatever we can.\n while (fr < fl) {\n var swallowee = file[fr]\n\n this.debug('\\nglobstar while', file, fr, pattern, pr, swallowee)\n\n // XXX remove this slice. Just pass the start index.\n if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {\n this.debug('globstar found match!', fr, fl, swallowee)\n // found a match.\n return true\n } else {\n // can't swallow \".\" or \"..\" ever.\n // can only swallow \".foo\" when explicitly asked.\n if (swallowee === '.' || swallowee === '..' ||\n (!options.dot && swallowee.charAt(0) === '.')) {\n this.debug('dot detected!', file, fr, pattern, pr)\n break\n }\n\n // ** swallows a segment, and continue.\n this.debug('globstar swallow a segment, and continue')\n fr++\n }\n }\n\n // no match was found.\n // However, in partial mode, we can't say this is necessarily over.\n // If there's more *pattern* left, then\n /* istanbul ignore if */\n if (partial) {\n // ran out of file\n this.debug('\\n>>> no match, partial?', file, fr, pattern, pr)\n if (fr === fl) return true\n }\n return false\n }\n\n // something other than **\n // non-magic patterns just have to match exactly\n // patterns with magic have been turned into regexps.\n var hit\n if (typeof p === 'string') {\n hit = f === p\n this.debug('string match', p, f, hit)\n } else {\n hit = f.match(p)\n this.debug('pattern match', p, f, hit)\n }\n\n if (!hit) return false\n }\n\n // Note: ending in / means that we'll get a final \"\"\n // at the end of the pattern. This can only match a\n // corresponding \"\" at the end of the file.\n // If the file ends in /, then it can only match a\n // a pattern that ends in /, unless the pattern just\n // doesn't have any more for it. But, a/b/ should *not*\n // match \"a/b/*\", even though \"\" matches against the\n // [^/]*? pattern, except in partial mode, where it might\n // simply not be reached yet.\n // However, a/b/ should still satisfy a/*\n\n // now either we fell off the end of the pattern, or we're done.\n if (fi === fl && pi === pl) {\n // ran out of pattern and filename at the same time.\n // an exact hit!\n return true\n } else if (fi === fl) {\n // ran out of file, but still had pattern left.\n // this is ok if we're doing the match as part of\n // a glob fs traversal.\n return partial\n } else /* istanbul ignore else */ if (pi === pl) {\n // ran out of pattern, still have file left.\n // this is only acceptable if we're on the very last\n // empty segment of a file with a trailing slash.\n // a/* should match a/b/\n return (fi === fl - 1) && (file[fi] === '')\n }\n\n // should be unreachable.\n /* istanbul ignore next */\n throw new Error('wtf?')\n}\n\n// replace stuff like \\* with *\nfunction globUnescape (s) {\n return s.replace(/\\\\(.)/g, '$1')\n}\n\nfunction regExpEscape (s) {\n return s.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, '\\\\$&')\n}\n"],"names":["require$$1"],"mappings":"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","x_google_ignoreList":[0]}
|
|
1
|
+
{"version":3,"file":"minimatch.js","sources":["../../../../../../../../node_modules/@stoplight/spectral-core/node_modules/minimatch/minimatch.js"],"sourcesContent":["module.exports = minimatch\nminimatch.Minimatch = Minimatch\n\nvar path = (function () { try { return require('path') } catch (e) {}}()) || {\n sep: '/'\n}\nminimatch.sep = path.sep\n\nvar GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {}\nvar expand = require('brace-expansion')\n\nvar plTypes = {\n '!': { open: '(?:(?!(?:', close: '))[^/]*?)'},\n '?': { open: '(?:', close: ')?' },\n '+': { open: '(?:', close: ')+' },\n '*': { open: '(?:', close: ')*' },\n '@': { open: '(?:', close: ')' }\n}\n\n// any single thing other than /\n// don't need to escape / when using new RegExp()\nvar qmark = '[^/]'\n\n// * => any number of characters\nvar star = qmark + '*?'\n\n// ** when dots are allowed. Anything goes, except .. and .\n// not (^ or / followed by one or two dots followed by $ or /),\n// followed by anything, any number of times.\nvar twoStarDot = '(?:(?!(?:\\\\\\/|^)(?:\\\\.{1,2})($|\\\\\\/)).)*?'\n\n// not a ^ or / followed by a dot,\n// followed by anything, any number of times.\nvar twoStarNoDot = '(?:(?!(?:\\\\\\/|^)\\\\.).)*?'\n\n// characters that need to be escaped in RegExp.\nvar reSpecials = charSet('().*{}+?[]^$\\\\!')\n\n// \"abc\" -> { a:true, b:true, c:true }\nfunction charSet (s) {\n return s.split('').reduce(function (set, c) {\n set[c] = true\n return set\n }, {})\n}\n\n// normalizes slashes.\nvar slashSplit = /\\/+/\n\nminimatch.filter = filter\nfunction filter (pattern, options) {\n options = options || {}\n return function (p, i, list) {\n return minimatch(p, pattern, options)\n }\n}\n\nfunction ext (a, b) {\n b = b || {}\n var t = {}\n Object.keys(a).forEach(function (k) {\n t[k] = a[k]\n })\n Object.keys(b).forEach(function (k) {\n t[k] = b[k]\n })\n return t\n}\n\nminimatch.defaults = function (def) {\n if (!def || typeof def !== 'object' || !Object.keys(def).length) {\n return minimatch\n }\n\n var orig = minimatch\n\n var m = function minimatch (p, pattern, options) {\n return orig(p, pattern, ext(def, options))\n }\n\n m.Minimatch = function Minimatch (pattern, options) {\n return new orig.Minimatch(pattern, ext(def, options))\n }\n m.Minimatch.defaults = function defaults (options) {\n return orig.defaults(ext(def, options)).Minimatch\n }\n\n m.filter = function filter (pattern, options) {\n return orig.filter(pattern, ext(def, options))\n }\n\n m.defaults = function defaults (options) {\n return orig.defaults(ext(def, options))\n }\n\n m.makeRe = function makeRe (pattern, options) {\n return orig.makeRe(pattern, ext(def, options))\n }\n\n m.braceExpand = function braceExpand (pattern, options) {\n return orig.braceExpand(pattern, ext(def, options))\n }\n\n m.match = function (list, pattern, options) {\n return orig.match(list, pattern, ext(def, options))\n }\n\n return m\n}\n\nMinimatch.defaults = function (def) {\n return minimatch.defaults(def).Minimatch\n}\n\nfunction minimatch (p, pattern, options) {\n assertValidPattern(pattern)\n\n if (!options) options = {}\n\n // shortcut: comments match nothing.\n if (!options.nocomment && pattern.charAt(0) === '#') {\n return false\n }\n\n return new Minimatch(pattern, options).match(p)\n}\n\nfunction Minimatch (pattern, options) {\n if (!(this instanceof Minimatch)) {\n return new Minimatch(pattern, options)\n }\n\n assertValidPattern(pattern)\n\n if (!options) options = {}\n\n pattern = pattern.trim()\n\n // windows support: need to use /, not \\\n if (!options.allowWindowsEscape && path.sep !== '/') {\n pattern = pattern.split(path.sep).join('/')\n }\n\n this.options = options\n this.maxGlobstarRecursion = options.maxGlobstarRecursion !== undefined\n ? options.maxGlobstarRecursion : 200\n this.set = []\n this.pattern = pattern\n this.regexp = null\n this.negate = false\n this.comment = false\n this.empty = false\n this.partial = !!options.partial\n\n // make the set of regexps etc.\n this.make()\n}\n\nMinimatch.prototype.debug = function () {}\n\nMinimatch.prototype.make = make\nfunction make () {\n var pattern = this.pattern\n var options = this.options\n\n // empty patterns and comments match nothing.\n if (!options.nocomment && pattern.charAt(0) === '#') {\n this.comment = true\n return\n }\n if (!pattern) {\n this.empty = true\n return\n }\n\n // step 1: figure out negation, etc.\n this.parseNegate()\n\n // step 2: expand braces\n var set = this.globSet = this.braceExpand()\n\n if (options.debug) this.debug = function debug() { console.error.apply(console, arguments) }\n\n this.debug(this.pattern, set)\n\n // step 3: now we have a set, so turn each one into a series of path-portion\n // matching patterns.\n // These will be regexps, except in the case of \"**\", which is\n // set to the GLOBSTAR object for globstar behavior,\n // and will not contain any / characters\n set = this.globParts = set.map(function (s) {\n return s.split(slashSplit)\n })\n\n this.debug(this.pattern, set)\n\n // glob --> regexps\n set = set.map(function (s, si, set) {\n return s.map(this.parse, this)\n }, this)\n\n this.debug(this.pattern, set)\n\n // filter out everything that didn't compile properly.\n set = set.filter(function (s) {\n return s.indexOf(false) === -1\n })\n\n this.debug(this.pattern, set)\n\n this.set = set\n}\n\nMinimatch.prototype.parseNegate = parseNegate\nfunction parseNegate () {\n var pattern = this.pattern\n var negate = false\n var options = this.options\n var negateOffset = 0\n\n if (options.nonegate) return\n\n for (var i = 0, l = pattern.length\n ; i < l && pattern.charAt(i) === '!'\n ; i++) {\n negate = !negate\n negateOffset++\n }\n\n if (negateOffset) this.pattern = pattern.substr(negateOffset)\n this.negate = negate\n}\n\n// Brace expansion:\n// a{b,c}d -> abd acd\n// a{b,}c -> abc ac\n// a{0..3}d -> a0d a1d a2d a3d\n// a{b,c{d,e}f}g -> abg acdfg acefg\n// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg\n//\n// Invalid sets are not expanded.\n// a{2..}b -> a{2..}b\n// a{b}c -> a{b}c\nminimatch.braceExpand = function (pattern, options) {\n return braceExpand(pattern, options)\n}\n\nMinimatch.prototype.braceExpand = braceExpand\n\nfunction braceExpand (pattern, options) {\n if (!options) {\n if (this instanceof Minimatch) {\n options = this.options\n } else {\n options = {}\n }\n }\n\n pattern = typeof pattern === 'undefined'\n ? this.pattern : pattern\n\n assertValidPattern(pattern)\n\n // Thanks to Yeting Li <https://github.com/yetingli> for\n // improving this regexp to avoid a ReDOS vulnerability.\n if (options.nobrace || !/\\{(?:(?!\\{).)*\\}/.test(pattern)) {\n // shortcut. no need to expand.\n return [pattern]\n }\n\n return expand(pattern)\n}\n\nvar MAX_PATTERN_LENGTH = 1024 * 64\nvar assertValidPattern = function (pattern) {\n if (typeof pattern !== 'string') {\n throw new TypeError('invalid pattern')\n }\n\n if (pattern.length > MAX_PATTERN_LENGTH) {\n throw new TypeError('pattern is too long')\n }\n}\n\n// parse a component of the expanded set.\n// At this point, no pattern may contain \"/\" in it\n// so we're going to return a 2d array, where each entry is the full\n// pattern, split on '/', and then turned into a regular expression.\n// A regexp is made at the end which joins each array with an\n// escaped /, and another full one which joins each regexp with |.\n//\n// Following the lead of Bash 4.1, note that \"**\" only has special meaning\n// when it is the *only* thing in a path portion. Otherwise, any series\n// of * is equivalent to a single *. Globstar behavior is enabled by\n// default, and can be disabled by setting options.noglobstar.\nMinimatch.prototype.parse = parse\nvar SUBPARSE = {}\nfunction parse (pattern, isSub) {\n assertValidPattern(pattern)\n\n var options = this.options\n\n // shortcuts\n if (pattern === '**') {\n if (!options.noglobstar)\n return GLOBSTAR\n else\n pattern = '*'\n }\n if (pattern === '') return ''\n\n var re = ''\n var hasMagic = !!options.nocase\n var escaping = false\n // ? => one single character\n var patternListStack = []\n var negativeLists = []\n var stateChar\n var inClass = false\n var reClassStart = -1\n var classStart = -1\n // . and .. never match anything that doesn't start with .,\n // even when options.dot is set.\n var patternStart = pattern.charAt(0) === '.' ? '' // anything\n // not (start or / followed by . or .. followed by / or end)\n : options.dot ? '(?!(?:^|\\\\\\/)\\\\.{1,2}(?:$|\\\\\\/))'\n : '(?!\\\\.)'\n var self = this\n\n function clearStateChar () {\n if (stateChar) {\n // we had some state-tracking character\n // that wasn't consumed by this pass.\n switch (stateChar) {\n case '*':\n re += star\n hasMagic = true\n break\n case '?':\n re += qmark\n hasMagic = true\n break\n default:\n re += '\\\\' + stateChar\n break\n }\n self.debug('clearStateChar %j %j', stateChar, re)\n stateChar = false\n }\n }\n\n for (var i = 0, len = pattern.length, c\n ; (i < len) && (c = pattern.charAt(i))\n ; i++) {\n this.debug('%s\\t%s %s %j', pattern, i, re, c)\n\n // skip over any that are escaped.\n if (escaping && reSpecials[c]) {\n re += '\\\\' + c\n escaping = false\n continue\n }\n\n switch (c) {\n /* istanbul ignore next */\n case '/': {\n // completely not allowed, even escaped.\n // Should already be path-split by now.\n return false\n }\n\n case '\\\\':\n clearStateChar()\n escaping = true\n continue\n\n // the various stateChar values\n // for the \"extglob\" stuff.\n case '?':\n case '*':\n case '+':\n case '@':\n case '!':\n this.debug('%s\\t%s %s %j <-- stateChar', pattern, i, re, c)\n\n // all of those are literals inside a class, except that\n // the glob [!a] means [^a] in regexp\n if (inClass) {\n this.debug(' in class')\n if (c === '!' && i === classStart + 1) c = '^'\n re += c\n continue\n }\n\n // coalesce consecutive non-globstar * characters\n if (c === '*' && stateChar === '*') continue\n\n // if we already have a stateChar, then it means\n // that there was something like ** or +? in there.\n // Handle the stateChar, then proceed with this one.\n self.debug('call clearStateChar %j', stateChar)\n clearStateChar()\n stateChar = c\n // if extglob is disabled, then +(asdf|foo) isn't a thing.\n // just clear the statechar *now*, rather than even diving into\n // the patternList stuff.\n if (options.noext) clearStateChar()\n continue\n\n case '(':\n if (inClass) {\n re += '('\n continue\n }\n\n if (!stateChar) {\n re += '\\\\('\n continue\n }\n\n patternListStack.push({\n type: stateChar,\n start: i - 1,\n reStart: re.length,\n open: plTypes[stateChar].open,\n close: plTypes[stateChar].close\n })\n // negation is (?:(?!js)[^/]*)\n re += stateChar === '!' ? '(?:(?!(?:' : '(?:'\n this.debug('plType %j %j', stateChar, re)\n stateChar = false\n continue\n\n case ')':\n if (inClass || !patternListStack.length) {\n re += '\\\\)'\n continue\n }\n\n clearStateChar()\n hasMagic = true\n var pl = patternListStack.pop()\n // negation is (?:(?!js)[^/]*)\n // The others are (?:<pattern>)<type>\n re += pl.close\n if (pl.type === '!') {\n negativeLists.push(pl)\n }\n pl.reEnd = re.length\n continue\n\n case '|':\n if (inClass || !patternListStack.length || escaping) {\n re += '\\\\|'\n escaping = false\n continue\n }\n\n clearStateChar()\n re += '|'\n continue\n\n // these are mostly the same in regexp and glob\n case '[':\n // swallow any state-tracking char before the [\n clearStateChar()\n\n if (inClass) {\n re += '\\\\' + c\n continue\n }\n\n inClass = true\n classStart = i\n reClassStart = re.length\n re += c\n continue\n\n case ']':\n // a right bracket shall lose its special\n // meaning and represent itself in\n // a bracket expression if it occurs\n // first in the list. -- POSIX.2 2.8.3.2\n if (i === classStart + 1 || !inClass) {\n re += '\\\\' + c\n escaping = false\n continue\n }\n\n // handle the case where we left a class open.\n // \"[z-a]\" is valid, equivalent to \"\\[z-a\\]\"\n // split where the last [ was, make sure we don't have\n // an invalid re. if so, re-walk the contents of the\n // would-be class to re-translate any characters that\n // were passed through as-is\n // TODO: It would probably be faster to determine this\n // without a try/catch and a new RegExp, but it's tricky\n // to do safely. For now, this is safe and works.\n var cs = pattern.substring(classStart + 1, i)\n try {\n RegExp('[' + cs + ']')\n } catch (er) {\n // not a valid class!\n var sp = this.parse(cs, SUBPARSE)\n re = re.substr(0, reClassStart) + '\\\\[' + sp[0] + '\\\\]'\n hasMagic = hasMagic || sp[1]\n inClass = false\n continue\n }\n\n // finish up the class.\n hasMagic = true\n inClass = false\n re += c\n continue\n\n default:\n // swallow any state char that wasn't consumed\n clearStateChar()\n\n if (escaping) {\n // no need\n escaping = false\n } else if (reSpecials[c]\n && !(c === '^' && inClass)) {\n re += '\\\\'\n }\n\n re += c\n\n } // switch\n } // for\n\n // handle the case where we left a class open.\n // \"[abc\" is valid, equivalent to \"\\[abc\"\n if (inClass) {\n // split where the last [ was, and escape it\n // this is a huge pita. We now have to re-walk\n // the contents of the would-be class to re-translate\n // any characters that were passed through as-is\n cs = pattern.substr(classStart + 1)\n sp = this.parse(cs, SUBPARSE)\n re = re.substr(0, reClassStart) + '\\\\[' + sp[0]\n hasMagic = hasMagic || sp[1]\n }\n\n // handle the case where we had a +( thing at the *end*\n // of the pattern.\n // each pattern list stack adds 3 chars, and we need to go through\n // and escape any | chars that were passed through as-is for the regexp.\n // Go through and escape them, taking care not to double-escape any\n // | chars that were already escaped.\n for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {\n var tail = re.slice(pl.reStart + pl.open.length)\n this.debug('setting tail', re, pl)\n // maybe some even number of \\, then maybe 1 \\, followed by a |\n tail = tail.replace(/((?:\\\\{2}){0,64})(\\\\?)\\|/g, function (_, $1, $2) {\n if (!$2) {\n // the | isn't already escaped, so escape it.\n $2 = '\\\\'\n }\n\n // need to escape all those slashes *again*, without escaping the\n // one that we need for escaping the | character. As it works out,\n // escaping an even number of slashes can be done by simply repeating\n // it exactly after itself. That's why this trick works.\n //\n // I am sorry that you have to see this.\n return $1 + $1 + $2 + '|'\n })\n\n this.debug('tail=%j\\n %s', tail, tail, pl, re)\n var t = pl.type === '*' ? star\n : pl.type === '?' ? qmark\n : '\\\\' + pl.type\n\n hasMagic = true\n re = re.slice(0, pl.reStart) + t + '\\\\(' + tail\n }\n\n // handle trailing things that only matter at the very end.\n clearStateChar()\n if (escaping) {\n // trailing \\\\\n re += '\\\\\\\\'\n }\n\n // only need to apply the nodot start if the re starts with\n // something that could conceivably capture a dot\n var addPatternStart = false\n switch (re.charAt(0)) {\n case '[': case '.': case '(': addPatternStart = true\n }\n\n // Hack to work around lack of negative lookbehind in JS\n // A pattern like: *.!(x).!(y|z) needs to ensure that a name\n // like 'a.xyz.yz' doesn't match. So, the first negative\n // lookahead, has to look ALL the way ahead, to the end of\n // the pattern.\n for (var n = negativeLists.length - 1; n > -1; n--) {\n var nl = negativeLists[n]\n\n var nlBefore = re.slice(0, nl.reStart)\n var nlFirst = re.slice(nl.reStart, nl.reEnd - 8)\n var nlLast = re.slice(nl.reEnd - 8, nl.reEnd)\n var nlAfter = re.slice(nl.reEnd)\n\n nlLast += nlAfter\n\n // Handle nested stuff like *(*.js|!(*.json)), where open parens\n // mean that we should *not* include the ) in the bit that is considered\n // \"after\" the negated section.\n var openParensBefore = nlBefore.split('(').length - 1\n var cleanAfter = nlAfter\n for (i = 0; i < openParensBefore; i++) {\n cleanAfter = cleanAfter.replace(/\\)[+*?]?/, '')\n }\n nlAfter = cleanAfter\n\n var dollar = ''\n if (nlAfter === '' && isSub !== SUBPARSE) {\n dollar = '$'\n }\n var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast\n re = newRe\n }\n\n // if the re is not \"\" at this point, then we need to make sure\n // it doesn't match against an empty path part.\n // Otherwise a/* will match a/, which it should not.\n if (re !== '' && hasMagic) {\n re = '(?=.)' + re\n }\n\n if (addPatternStart) {\n re = patternStart + re\n }\n\n // parsing just a piece of a larger pattern.\n if (isSub === SUBPARSE) {\n return [re, hasMagic]\n }\n\n // skip the regexp for non-magical patterns\n // unescape anything in it, though, so that it'll be\n // an exact match against a file etc.\n if (!hasMagic) {\n return globUnescape(pattern)\n }\n\n var flags = options.nocase ? 'i' : ''\n try {\n var regExp = new RegExp('^' + re + '$', flags)\n } catch (er) /* istanbul ignore next - should be impossible */ {\n // If it was an invalid regular expression, then it can't match\n // anything. This trick looks for a character after the end of\n // the string, which is of course impossible, except in multi-line\n // mode, but it's not a /m regex.\n return new RegExp('$.')\n }\n\n regExp._glob = pattern\n regExp._src = re\n\n return regExp\n}\n\nminimatch.makeRe = function (pattern, options) {\n return new Minimatch(pattern, options || {}).makeRe()\n}\n\nMinimatch.prototype.makeRe = makeRe\nfunction makeRe () {\n if (this.regexp || this.regexp === false) return this.regexp\n\n // at this point, this.set is a 2d array of partial\n // pattern strings, or \"**\".\n //\n // It's better to use .match(). This function shouldn't\n // be used, really, but it's pretty convenient sometimes,\n // when you just want to work with a regex.\n var set = this.set\n\n if (!set.length) {\n this.regexp = false\n return this.regexp\n }\n var options = this.options\n\n var twoStar = options.noglobstar ? star\n : options.dot ? twoStarDot\n : twoStarNoDot\n var flags = options.nocase ? 'i' : ''\n\n var re = set.map(function (pattern) {\n return pattern.map(function (p) {\n return (p === GLOBSTAR) ? twoStar\n : (typeof p === 'string') ? regExpEscape(p)\n : p._src\n }).join('\\\\\\/')\n }).join('|')\n\n // must match entire pattern\n // ending in a * or ** will make it less strict.\n re = '^(?:' + re + ')$'\n\n // can match anything, as long as it's not this.\n if (this.negate) re = '^(?!' + re + ').*$'\n\n try {\n this.regexp = new RegExp(re, flags)\n } catch (ex) /* istanbul ignore next - should be impossible */ {\n this.regexp = false\n }\n return this.regexp\n}\n\nminimatch.match = function (list, pattern, options) {\n options = options || {}\n var mm = new Minimatch(pattern, options)\n list = list.filter(function (f) {\n return mm.match(f)\n })\n if (mm.options.nonull && !list.length) {\n list.push(pattern)\n }\n return list\n}\n\nMinimatch.prototype.match = function match (f, partial) {\n if (typeof partial === 'undefined') partial = this.partial\n this.debug('match', f, this.pattern)\n // short-circuit in the case of busted things.\n // comments, etc.\n if (this.comment) return false\n if (this.empty) return f === ''\n\n if (f === '/' && partial) return true\n\n var options = this.options\n\n // windows: need to use /, not \\\n if (path.sep !== '/') {\n f = f.split(path.sep).join('/')\n }\n\n // treat the test path as a set of pathparts.\n f = f.split(slashSplit)\n this.debug(this.pattern, 'split', f)\n\n // just ONE of the pattern sets in this.set needs to match\n // in order for it to be valid. If negating, then just one\n // match means that we have failed.\n // Either way, return on the first hit.\n\n var set = this.set\n this.debug(this.pattern, 'set', set)\n\n // Find the basename of the path by looking for the last non-empty segment\n var filename\n var i\n for (i = f.length - 1; i >= 0; i--) {\n filename = f[i]\n if (filename) break\n }\n\n for (i = 0; i < set.length; i++) {\n var pattern = set[i]\n var file = f\n if (options.matchBase && pattern.length === 1) {\n file = [filename]\n }\n var hit = this.matchOne(file, pattern, partial)\n if (hit) {\n if (options.flipNegate) return true\n return !this.negate\n }\n }\n\n // didn't get any hits. this is success if it's a negative\n // pattern, failure otherwise.\n if (options.flipNegate) return false\n return this.negate\n}\n\n// set partial to true to test if, for example,\n// \"/a/b\" matches the start of \"/*/b/*/d\"\n// Partial means, if you run out of file before you run\n// out of pattern, then that's fine, as long as all\n// the parts match.\nMinimatch.prototype.matchOne = function (file, pattern, partial) {\n if (pattern.indexOf(GLOBSTAR) !== -1) {\n return this._matchGlobstar(file, pattern, partial, 0, 0)\n }\n return this._matchOne(file, pattern, partial, 0, 0)\n}\n\nMinimatch.prototype._matchGlobstar = function (file, pattern, partial, fileIndex, patternIndex) {\n var i\n\n // find first globstar from patternIndex\n var firstgs = -1\n for (i = patternIndex; i < pattern.length; i++) {\n if (pattern[i] === GLOBSTAR) { firstgs = i; break }\n }\n\n // find last globstar\n var lastgs = -1\n for (i = pattern.length - 1; i >= 0; i--) {\n if (pattern[i] === GLOBSTAR) { lastgs = i; break }\n }\n\n var head = pattern.slice(patternIndex, firstgs)\n var body = partial ? pattern.slice(firstgs + 1) : pattern.slice(firstgs + 1, lastgs)\n var tail = partial ? [] : pattern.slice(lastgs + 1)\n\n // check the head\n if (head.length) {\n var fileHead = file.slice(fileIndex, fileIndex + head.length)\n if (!this._matchOne(fileHead, head, partial, 0, 0)) {\n return false\n }\n fileIndex += head.length\n }\n\n // check the tail\n var fileTailMatch = 0\n if (tail.length) {\n if (tail.length + fileIndex > file.length) return false\n\n var tailStart = file.length - tail.length\n if (this._matchOne(file, tail, partial, tailStart, 0)) {\n fileTailMatch = tail.length\n } else {\n // affordance for stuff like a/**/* matching a/b/\n if (file[file.length - 1] !== '' ||\n fileIndex + tail.length === file.length) {\n return false\n }\n tailStart--\n if (!this._matchOne(file, tail, partial, tailStart, 0)) {\n return false\n }\n fileTailMatch = tail.length + 1\n }\n }\n\n // if body is empty (single ** between head and tail)\n if (!body.length) {\n var sawSome = !!fileTailMatch\n for (i = fileIndex; i < file.length - fileTailMatch; i++) {\n var f = String(file[i])\n sawSome = true\n if (f === '.' || f === '..' ||\n (!this.options.dot && f.charAt(0) === '.')) {\n return false\n }\n }\n return partial || sawSome\n }\n\n // split body into segments at each GLOBSTAR\n var bodySegments = [[[], 0]]\n var currentBody = bodySegments[0]\n var nonGsParts = 0\n var nonGsPartsSums = [0]\n for (var bi = 0; bi < body.length; bi++) {\n var b = body[bi]\n if (b === GLOBSTAR) {\n nonGsPartsSums.push(nonGsParts)\n currentBody = [[], 0]\n bodySegments.push(currentBody)\n } else {\n currentBody[0].push(b)\n nonGsParts++\n }\n }\n\n var idx = bodySegments.length - 1\n var fileLength = file.length - fileTailMatch\n for (var si = 0; si < bodySegments.length; si++) {\n bodySegments[si][1] = fileLength -\n (nonGsPartsSums[idx--] + bodySegments[si][0].length)\n }\n\n return !!this._matchGlobStarBodySections(\n file, bodySegments, fileIndex, 0, partial, 0, !!fileTailMatch\n )\n}\n\n// return false for \"nope, not matching\"\n// return null for \"not matching, cannot keep trying\"\nMinimatch.prototype._matchGlobStarBodySections = function (\n file, bodySegments, fileIndex, bodyIndex, partial, globStarDepth, sawTail\n) {\n var bs = bodySegments[bodyIndex]\n if (!bs) {\n // just make sure there are no bad dots\n for (var i = fileIndex; i < file.length; i++) {\n sawTail = true\n var f = file[i]\n if (f === '.' || f === '..' ||\n (!this.options.dot && f.charAt(0) === '.')) {\n return false\n }\n }\n return sawTail\n }\n\n var body = bs[0]\n var after = bs[1]\n while (fileIndex <= after) {\n var m = this._matchOne(\n file.slice(0, fileIndex + body.length),\n body,\n partial,\n fileIndex,\n 0\n )\n // if limit exceeded, no match. intentional false negative,\n // acceptable break in correctness for security.\n if (m && globStarDepth < this.maxGlobstarRecursion) {\n var sub = this._matchGlobStarBodySections(\n file, bodySegments,\n fileIndex + body.length, bodyIndex + 1,\n partial, globStarDepth + 1, sawTail\n )\n if (sub !== false) {\n return sub\n }\n }\n var f = file[fileIndex]\n if (f === '.' || f === '..' ||\n (!this.options.dot && f.charAt(0) === '.')) {\n return false\n }\n fileIndex++\n }\n return partial || null\n}\n\nMinimatch.prototype._matchOne = function (file, pattern, partial, fileIndex, patternIndex) {\n var fi, pi, fl, pl\n for (\n fi = fileIndex, pi = patternIndex, fl = file.length, pl = pattern.length\n ; (fi < fl) && (pi < pl)\n ; fi++, pi++\n ) {\n this.debug('matchOne loop')\n var p = pattern[pi]\n var f = file[fi]\n\n this.debug(pattern, p, f)\n\n // should be impossible.\n // some invalid regexp stuff in the set.\n /* istanbul ignore if */\n if (p === false || p === GLOBSTAR) return false\n\n // something other than **\n // non-magic patterns just have to match exactly\n // patterns with magic have been turned into regexps.\n var hit\n if (typeof p === 'string') {\n hit = f === p\n this.debug('string match', p, f, hit)\n } else {\n hit = f.match(p)\n this.debug('pattern match', p, f, hit)\n }\n\n if (!hit) return false\n }\n\n // now either we fell off the end of the pattern, or we're done.\n if (fi === fl && pi === pl) {\n // ran out of pattern and filename at the same time.\n // an exact hit!\n return true\n } else if (fi === fl) {\n // ran out of file, but still had pattern left.\n // this is ok if we're doing the match as part of\n // a glob fs traversal.\n return partial\n } else /* istanbul ignore else */ if (pi === pl) {\n // ran out of pattern, still have file left.\n // this is only acceptable if we're on the very last\n // empty segment of a file with a trailing slash.\n // a/* should match a/b/\n return (fi === fl - 1) && (file[fi] === '')\n }\n\n // should be unreachable.\n /* istanbul ignore next */\n throw new Error('wtf?')\n}\n\n// replace stuff like \\* with *\nfunction globUnescape (s) {\n return s.replace(/\\\\(.)/g, '$1')\n}\n\nfunction regExpEscape (s) {\n return s.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, '\\\\$&')\n}\n"],"names":["require$$1"],"mappings":"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","x_google_ignoreList":[0]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as types } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as types } from '../../../../../_virtual/index17.js';
|
|
2
2
|
import require$$0 from '../../../../../_virtual/tslib.es6.js';
|
|
3
3
|
import { __require as requireSpectral } from './spectral.js';
|
|
4
4
|
import { __require as require_function } from './function.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as dist } from '../../../../_virtual/
|
|
1
|
+
import { __exports as dist } from '../../../../_virtual/index32.js';
|
|
2
2
|
import require$$0 from '../../../../_virtual/tslib.es6.js';
|
|
3
3
|
import { __require as requireAlphabetical } from './alphabetical.js';
|
|
4
4
|
import { __require as requireCasing } from './casing.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as utils } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as utils } from '../../../../../_virtual/index38.js';
|
|
2
2
|
import require$$0 from '../../../../../_virtual/tslib.es6.js';
|
|
3
3
|
import { __require as requireDecodeSegmentFragment } from './decodeSegmentFragment.js';
|
|
4
4
|
import { __require as requirePrintError } from './printError.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as yaml } from '../../../_virtual/
|
|
1
|
+
import { __exports as yaml } from '../../../_virtual/index39.js';
|
|
2
2
|
import require$$0 from '../../../_virtual/tslib.es6.js';
|
|
3
3
|
import { __require as requireBuildJsonPath } from './buildJsonPath.js';
|
|
4
4
|
import { __require as requireDereferenceAnchor } from './dereferenceAnchor.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as jsonSchema201909 } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as jsonSchema201909 } from '../../../../../_virtual/index57.js';
|
|
2
2
|
import require$$0 from './schema.json.js';
|
|
3
3
|
import require$$1 from './meta/applicator.json.js';
|
|
4
4
|
import require$$2 from './meta/content.json.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as jsonSchema202012 } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as jsonSchema202012 } from '../../../../../_virtual/index56.js';
|
|
2
2
|
import require$$0 from './schema.json.js';
|
|
3
3
|
import require$$1 from './meta/applicator.json.js';
|
|
4
4
|
import require$$2 from './meta/unevaluated.json.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as applicator } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as applicator } from '../../../../../_virtual/index25.js';
|
|
2
2
|
import { __require as requireAdditionalItems } from './additionalItems.js';
|
|
3
3
|
import { __require as requirePrefixItems } from './prefixItems.js';
|
|
4
4
|
import { __require as requireItems } from './items.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as unevaluated } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as unevaluated } from '../../../../../_virtual/index58.js';
|
|
2
2
|
import { __require as requireUnevaluatedProperties } from './unevaluatedProperties.js';
|
|
3
3
|
import { __require as requireUnevaluatedItems } from './unevaluatedItems.js';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __exports as validation } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as validation } from '../../../../../_virtual/index27.js';
|
|
2
2
|
import { __require as requireLimitNumber } from './limitNumber.js';
|
|
3
3
|
import { __require as requireMultipleOf } from './multipleOf.js';
|
|
4
4
|
import { __require as requireLimitLength } from './limitLength.js';
|
|
@@ -23,7 +23,7 @@ function requireLodash () {
|
|
|
23
23
|
var undefined$1;
|
|
24
24
|
|
|
25
25
|
/** Used as the semantic version number. */
|
|
26
|
-
var VERSION = '4.
|
|
26
|
+
var VERSION = '4.18.1';
|
|
27
27
|
|
|
28
28
|
/** Used as the size to enable large array optimizations. */
|
|
29
29
|
var LARGE_ARRAY_SIZE = 200;
|
|
@@ -31,7 +31,8 @@ function requireLodash () {
|
|
|
31
31
|
/** Error message constants. */
|
|
32
32
|
var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.',
|
|
33
33
|
FUNC_ERROR_TEXT = 'Expected a function',
|
|
34
|
-
INVALID_TEMPL_VAR_ERROR_TEXT = 'Invalid `variable` option passed into `_.template`'
|
|
34
|
+
INVALID_TEMPL_VAR_ERROR_TEXT = 'Invalid `variable` option passed into `_.template`',
|
|
35
|
+
INVALID_TEMPL_IMPORTS_ERROR_TEXT = 'Invalid `imports` option passed into `_.template`';
|
|
35
36
|
|
|
36
37
|
/** Used to stand-in for `undefined` hash values. */
|
|
37
38
|
var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
|
@@ -1763,6 +1764,10 @@ function requireLodash () {
|
|
|
1763
1764
|
* embedded Ruby (ERB) as well as ES2015 template strings. Change the
|
|
1764
1765
|
* following template settings to use alternative delimiters.
|
|
1765
1766
|
*
|
|
1767
|
+
* **Security:** See
|
|
1768
|
+
* [threat model](https://github.com/lodash/lodash/blob/main/threat-model.md)
|
|
1769
|
+
* — `_.template` is insecure and will be removed in v5.
|
|
1770
|
+
*
|
|
1766
1771
|
* @static
|
|
1767
1772
|
* @memberOf _
|
|
1768
1773
|
* @type {Object}
|
|
@@ -2311,7 +2316,7 @@ function requireLodash () {
|
|
|
2311
2316
|
* @name has
|
|
2312
2317
|
* @memberOf SetCache
|
|
2313
2318
|
* @param {*} value The value to search for.
|
|
2314
|
-
* @returns {
|
|
2319
|
+
* @returns {boolean} Returns `true` if `value` is found, else `false`.
|
|
2315
2320
|
*/
|
|
2316
2321
|
function setCacheHas(value) {
|
|
2317
2322
|
return this.__data__.has(value);
|
|
@@ -4382,7 +4387,9 @@ function requireLodash () {
|
|
|
4382
4387
|
function baseUnset(object, path) {
|
|
4383
4388
|
path = castPath(path, object);
|
|
4384
4389
|
|
|
4385
|
-
// Prevent prototype pollution
|
|
4390
|
+
// Prevent prototype pollution:
|
|
4391
|
+
// https://github.com/lodash/lodash/security/advisories/GHSA-xxjr-mmjv-4gpg
|
|
4392
|
+
// https://github.com/lodash/lodash/security/advisories/GHSA-f23m-r3pf-42rh
|
|
4386
4393
|
var index = -1,
|
|
4387
4394
|
length = path.length;
|
|
4388
4395
|
|
|
@@ -4390,32 +4397,17 @@ function requireLodash () {
|
|
|
4390
4397
|
return true;
|
|
4391
4398
|
}
|
|
4392
4399
|
|
|
4393
|
-
var isRootPrimitive = object == null || (typeof object !== 'object' && typeof object !== 'function');
|
|
4394
|
-
|
|
4395
4400
|
while (++index < length) {
|
|
4396
|
-
var key = path[index];
|
|
4397
|
-
|
|
4398
|
-
// skip non-string keys (e.g., Symbols, numbers)
|
|
4399
|
-
if (typeof key !== 'string') {
|
|
4400
|
-
continue;
|
|
4401
|
-
}
|
|
4401
|
+
var key = toKey(path[index]);
|
|
4402
4402
|
|
|
4403
4403
|
// Always block "__proto__" anywhere in the path if it's not expected
|
|
4404
4404
|
if (key === '__proto__' && !hasOwnProperty.call(object, '__proto__')) {
|
|
4405
4405
|
return false;
|
|
4406
4406
|
}
|
|
4407
4407
|
|
|
4408
|
-
// Block
|
|
4409
|
-
|
|
4410
|
-
|
|
4411
|
-
typeof path[index + 1] === 'string' &&
|
|
4412
|
-
path[index + 1] === 'prototype') {
|
|
4413
|
-
|
|
4414
|
-
// Allow ONLY when the path starts at a primitive root, e.g., _.unset(0, 'constructor.prototype.a')
|
|
4415
|
-
if (isRootPrimitive && index === 0) {
|
|
4416
|
-
continue;
|
|
4417
|
-
}
|
|
4418
|
-
|
|
4408
|
+
// Block constructor/prototype as non-terminal traversal keys to prevent
|
|
4409
|
+
// escaping the object graph into built-in constructors and prototypes.
|
|
4410
|
+
if ((key === 'constructor' || key === 'prototype') && index < length - 1) {
|
|
4419
4411
|
return false;
|
|
4420
4412
|
}
|
|
4421
4413
|
}
|
|
@@ -6972,7 +6964,7 @@ function requireLodash () {
|
|
|
6972
6964
|
|
|
6973
6965
|
/**
|
|
6974
6966
|
* Creates an array with all falsey values removed. The values `false`, `null`,
|
|
6975
|
-
* `0`, `""`, `undefined`, and `NaN` are
|
|
6967
|
+
* `0`, `-0`, `0n`, `""`, `undefined`, and `NaN` are falsy.
|
|
6976
6968
|
*
|
|
6977
6969
|
* @static
|
|
6978
6970
|
* @memberOf _
|
|
@@ -7511,7 +7503,7 @@ function requireLodash () {
|
|
|
7511
7503
|
|
|
7512
7504
|
while (++index < length) {
|
|
7513
7505
|
var pair = pairs[index];
|
|
7514
|
-
result
|
|
7506
|
+
baseAssignValue(result, pair[0], pair[1]);
|
|
7515
7507
|
}
|
|
7516
7508
|
return result;
|
|
7517
7509
|
}
|
|
@@ -14171,6 +14163,8 @@ function requireLodash () {
|
|
|
14171
14163
|
* **Note:** JavaScript follows the IEEE-754 standard for resolving
|
|
14172
14164
|
* floating-point values which can produce unexpected results.
|
|
14173
14165
|
*
|
|
14166
|
+
* **Note:** If `lower` is greater than `upper`, the values are swapped.
|
|
14167
|
+
*
|
|
14174
14168
|
* @static
|
|
14175
14169
|
* @memberOf _
|
|
14176
14170
|
* @since 0.7.0
|
|
@@ -14184,9 +14178,16 @@ function requireLodash () {
|
|
|
14184
14178
|
* _.random(0, 5);
|
|
14185
14179
|
* // => an integer between 0 and 5
|
|
14186
14180
|
*
|
|
14181
|
+
* // when lower is greater than upper the values are swapped
|
|
14182
|
+
* _.random(5, 0);
|
|
14183
|
+
* // => an integer between 0 and 5
|
|
14184
|
+
*
|
|
14187
14185
|
* _.random(5);
|
|
14188
14186
|
* // => also an integer between 0 and 5
|
|
14189
14187
|
*
|
|
14188
|
+
* _.random(-5);
|
|
14189
|
+
* // => an integer between -5 and 0
|
|
14190
|
+
*
|
|
14190
14191
|
* _.random(5, true);
|
|
14191
14192
|
* // => a floating-point number between 0 and 5
|
|
14192
14193
|
*
|
|
@@ -14788,6 +14789,10 @@ function requireLodash () {
|
|
|
14788
14789
|
* properties may be accessed as free variables in the template. If a setting
|
|
14789
14790
|
* object is given, it takes precedence over `_.templateSettings` values.
|
|
14790
14791
|
*
|
|
14792
|
+
* **Security:** `_.template` is insecure and should not be used. It will be
|
|
14793
|
+
* removed in Lodash v5. Avoid untrusted input. See
|
|
14794
|
+
* [threat model](https://github.com/lodash/lodash/blob/main/threat-model.md).
|
|
14795
|
+
*
|
|
14791
14796
|
* **Note:** In the development build `_.template` utilizes
|
|
14792
14797
|
* [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl)
|
|
14793
14798
|
* for easier debugging.
|
|
@@ -14895,12 +14900,18 @@ function requireLodash () {
|
|
|
14895
14900
|
options = undefined$1;
|
|
14896
14901
|
}
|
|
14897
14902
|
string = toString(string);
|
|
14898
|
-
options =
|
|
14903
|
+
options = assignWith({}, options, settings, customDefaultsAssignIn);
|
|
14899
14904
|
|
|
14900
|
-
var imports =
|
|
14905
|
+
var imports = assignWith({}, options.imports, settings.imports, customDefaultsAssignIn),
|
|
14901
14906
|
importsKeys = keys(imports),
|
|
14902
14907
|
importsValues = baseValues(imports, importsKeys);
|
|
14903
14908
|
|
|
14909
|
+
arrayEach(importsKeys, function(key) {
|
|
14910
|
+
if (reForbiddenIdentifierChars.test(key)) {
|
|
14911
|
+
throw new Error(INVALID_TEMPL_IMPORTS_ERROR_TEXT);
|
|
14912
|
+
}
|
|
14913
|
+
});
|
|
14914
|
+
|
|
14904
14915
|
var isEscaping,
|
|
14905
14916
|
isEvaluating,
|
|
14906
14917
|
index = 0,
|