@ -61424,6 +61424,9 @@ exports.AbortError = AbortError;
/***/ 1532 :
/***/ 1532 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const ANY = Symbol ( 'SemVer ANY' )
const ANY = Symbol ( 'SemVer ANY' )
// hoisted class for cyclic dependency
// hoisted class for cyclic dependency
class Comparator {
class Comparator {
@ -61572,6 +61575,9 @@ const Range = __nccwpck_require__(9828)
/***/ 9828 :
/***/ 9828 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SPACE _CHARACTERS = /\s+/g
const SPACE _CHARACTERS = /\s+/g
// hoisted class for cyclic dependency
// hoisted class for cyclic dependency
@ -61827,6 +61833,7 @@ const isSatisfiable = (comparators, options) => {
// already replaced the hyphen ranges
// already replaced the hyphen ranges
// turn into a set of JUST comparators.
// turn into a set of JUST comparators.
const parseComparator = ( comp , options ) => {
const parseComparator = ( comp , options ) => {
comp = comp . replace ( re [ t . BUILD ] , '' )
debug ( 'comp' , comp , options )
debug ( 'comp' , comp , options )
comp = replaceCarets ( comp , options )
comp = replaceCarets ( comp , options )
debug ( 'caret' , comp )
debug ( 'caret' , comp )
@ -62133,9 +62140,12 @@ const testSet = (set, version, options) => {
/***/ 8088 :
/***/ 8088 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const debug = _ _nccwpck _require _ _ ( 427 )
const debug = _ _nccwpck _require _ _ ( 427 )
const { MAX _LENGTH , MAX _SAFE _INTEGER } = _ _nccwpck _require _ _ ( 2293 )
const { MAX _LENGTH , MAX _SAFE _INTEGER } = _ _nccwpck _require _ _ ( 2293 )
const { safeRe : re , safeSrc : src , t } = _ _nccwpck _require _ _ ( 9523 )
const { safeRe : re , t } = _ _nccwpck _require _ _ ( 9523 )
const parseOptions = _ _nccwpck _require _ _ ( 785 )
const parseOptions = _ _nccwpck _require _ _ ( 785 )
const { compareIdentifiers } = _ _nccwpck _require _ _ ( 2463 )
const { compareIdentifiers } = _ _nccwpck _require _ _ ( 2463 )
@ -62244,11 +62254,25 @@ class SemVer {
other = new SemVer ( other , this . options )
other = new SemVer ( other , this . options )
}
}
return (
if ( this . major < other . major ) {
compareIdentifiers ( this . major , other . major ) ||
return - 1
compareIdentifiers ( this . minor , other . minor ) ||
}
compareIdentifiers ( this . patch , other . patch )
if ( this . major > other . major ) {
)
return 1
}
if ( this . minor < other . minor ) {
return - 1
}
if ( this . minor > other . minor ) {
return 1
}
if ( this . patch < other . patch ) {
return - 1
}
if ( this . patch > other . patch ) {
return 1
}
return 0
}
}
comparePre ( other ) {
comparePre ( other ) {
@ -62317,8 +62341,7 @@ class SemVer {
}
}
// Avoid an invalid semver results
// Avoid an invalid semver results
if ( identifier ) {
if ( identifier ) {
const r = new RegExp ( ` ^ ${ this . options . loose ? src [ t . PRERELEASELOOSE ] : src [ t . PRERELEASE ] } $ ` )
const match = ` - ${ identifier } ` . match ( this . options . loose ? re [ t . PRERELEASELOOSE ] : re [ t . PRERELEASE ] )
const match = ` - ${ identifier } ` . match ( r )
if ( ! match || match [ 1 ] !== identifier ) {
if ( ! match || match [ 1 ] !== identifier ) {
throw new Error ( ` invalid identifier: ${ identifier } ` )
throw new Error ( ` invalid identifier: ${ identifier } ` )
}
}
@ -62458,6 +62481,9 @@ module.exports = SemVer
/***/ 8848 :
/***/ 8848 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const parse = _ _nccwpck _require _ _ ( 5925 )
const parse = _ _nccwpck _require _ _ ( 5925 )
const clean = ( version , options ) => {
const clean = ( version , options ) => {
const s = parse ( version . trim ( ) . replace ( /^[=v]+/ , '' ) , options )
const s = parse ( version . trim ( ) . replace ( /^[=v]+/ , '' ) , options )
@ -62471,6 +62497,9 @@ module.exports = clean
/***/ 5098 :
/***/ 5098 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const eq = _ _nccwpck _require _ _ ( 1898 )
const eq = _ _nccwpck _require _ _ ( 1898 )
const neq = _ _nccwpck _require _ _ ( 6017 )
const neq = _ _nccwpck _require _ _ ( 6017 )
const gt = _ _nccwpck _require _ _ ( 4123 )
const gt = _ _nccwpck _require _ _ ( 4123 )
@ -62530,6 +62559,9 @@ module.exports = cmp
/***/ 3466 :
/***/ 3466 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const parse = _ _nccwpck _require _ _ ( 5925 )
const parse = _ _nccwpck _require _ _ ( 5925 )
const { safeRe : re , t } = _ _nccwpck _require _ _ ( 9523 )
const { safeRe : re , t } = _ _nccwpck _require _ _ ( 9523 )
@ -62597,6 +62629,9 @@ module.exports = coerce
/***/ 2156 :
/***/ 2156 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const compareBuild = ( a , b , loose ) => {
const compareBuild = ( a , b , loose ) => {
const versionA = new SemVer ( a , loose )
const versionA = new SemVer ( a , loose )
@ -62611,6 +62646,9 @@ module.exports = compareBuild
/***/ 2804 :
/***/ 2804 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const compare = _ _nccwpck _require _ _ ( 4309 )
const compare = _ _nccwpck _require _ _ ( 4309 )
const compareLoose = ( a , b ) => compare ( a , b , true )
const compareLoose = ( a , b ) => compare ( a , b , true )
module . exports = compareLoose
module . exports = compareLoose
@ -62621,6 +62659,9 @@ module.exports = compareLoose
/***/ 4309 :
/***/ 4309 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const compare = ( a , b , loose ) =>
const compare = ( a , b , loose ) =>
new SemVer ( a , loose ) . compare ( new SemVer ( b , loose ) )
new SemVer ( a , loose ) . compare ( new SemVer ( b , loose ) )
@ -62633,6 +62674,9 @@ module.exports = compare
/***/ 4297 :
/***/ 4297 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const parse = _ _nccwpck _require _ _ ( 5925 )
const parse = _ _nccwpck _require _ _ ( 5925 )
const diff = ( version1 , version2 ) => {
const diff = ( version1 , version2 ) => {
@ -62698,6 +62742,9 @@ module.exports = diff
/***/ 1898 :
/***/ 1898 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const compare = _ _nccwpck _require _ _ ( 4309 )
const compare = _ _nccwpck _require _ _ ( 4309 )
const eq = ( a , b , loose ) => compare ( a , b , loose ) === 0
const eq = ( a , b , loose ) => compare ( a , b , loose ) === 0
module . exports = eq
module . exports = eq
@ -62708,6 +62755,9 @@ module.exports = eq
/***/ 4123 :
/***/ 4123 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const compare = _ _nccwpck _require _ _ ( 4309 )
const compare = _ _nccwpck _require _ _ ( 4309 )
const gt = ( a , b , loose ) => compare ( a , b , loose ) > 0
const gt = ( a , b , loose ) => compare ( a , b , loose ) > 0
module . exports = gt
module . exports = gt
@ -62718,6 +62768,9 @@ module.exports = gt
/***/ 5522 :
/***/ 5522 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const compare = _ _nccwpck _require _ _ ( 4309 )
const compare = _ _nccwpck _require _ _ ( 4309 )
const gte = ( a , b , loose ) => compare ( a , b , loose ) >= 0
const gte = ( a , b , loose ) => compare ( a , b , loose ) >= 0
module . exports = gte
module . exports = gte
@ -62728,6 +62781,9 @@ module.exports = gte
/***/ 900 :
/***/ 900 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const inc = ( version , release , options , identifier , identifierBase ) => {
const inc = ( version , release , options , identifier , identifierBase ) => {
@ -62754,6 +62810,9 @@ module.exports = inc
/***/ 194 :
/***/ 194 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const compare = _ _nccwpck _require _ _ ( 4309 )
const compare = _ _nccwpck _require _ _ ( 4309 )
const lt = ( a , b , loose ) => compare ( a , b , loose ) < 0
const lt = ( a , b , loose ) => compare ( a , b , loose ) < 0
module . exports = lt
module . exports = lt
@ -62764,6 +62823,9 @@ module.exports = lt
/***/ 7520 :
/***/ 7520 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const compare = _ _nccwpck _require _ _ ( 4309 )
const compare = _ _nccwpck _require _ _ ( 4309 )
const lte = ( a , b , loose ) => compare ( a , b , loose ) <= 0
const lte = ( a , b , loose ) => compare ( a , b , loose ) <= 0
module . exports = lte
module . exports = lte
@ -62774,6 +62836,9 @@ module.exports = lte
/***/ 6688 :
/***/ 6688 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const major = ( a , loose ) => new SemVer ( a , loose ) . major
const major = ( a , loose ) => new SemVer ( a , loose ) . major
module . exports = major
module . exports = major
@ -62784,6 +62849,9 @@ module.exports = major
/***/ 8447 :
/***/ 8447 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const minor = ( a , loose ) => new SemVer ( a , loose ) . minor
const minor = ( a , loose ) => new SemVer ( a , loose ) . minor
module . exports = minor
module . exports = minor
@ -62794,6 +62862,9 @@ module.exports = minor
/***/ 6017 :
/***/ 6017 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const compare = _ _nccwpck _require _ _ ( 4309 )
const compare = _ _nccwpck _require _ _ ( 4309 )
const neq = ( a , b , loose ) => compare ( a , b , loose ) !== 0
const neq = ( a , b , loose ) => compare ( a , b , loose ) !== 0
module . exports = neq
module . exports = neq
@ -62804,6 +62875,9 @@ module.exports = neq
/***/ 5925 :
/***/ 5925 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const parse = ( version , options , throwErrors = false ) => {
const parse = ( version , options , throwErrors = false ) => {
if ( version instanceof SemVer ) {
if ( version instanceof SemVer ) {
@ -62827,6 +62901,9 @@ module.exports = parse
/***/ 2866 :
/***/ 2866 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const patch = ( a , loose ) => new SemVer ( a , loose ) . patch
const patch = ( a , loose ) => new SemVer ( a , loose ) . patch
module . exports = patch
module . exports = patch
@ -62837,6 +62914,9 @@ module.exports = patch
/***/ 4016 :
/***/ 4016 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const parse = _ _nccwpck _require _ _ ( 5925 )
const parse = _ _nccwpck _require _ _ ( 5925 )
const prerelease = ( version , options ) => {
const prerelease = ( version , options ) => {
const parsed = parse ( version , options )
const parsed = parse ( version , options )
@ -62850,6 +62930,9 @@ module.exports = prerelease
/***/ 6417 :
/***/ 6417 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const compare = _ _nccwpck _require _ _ ( 4309 )
const compare = _ _nccwpck _require _ _ ( 4309 )
const rcompare = ( a , b , loose ) => compare ( b , a , loose )
const rcompare = ( a , b , loose ) => compare ( b , a , loose )
module . exports = rcompare
module . exports = rcompare
@ -62860,6 +62943,9 @@ module.exports = rcompare
/***/ 8701 :
/***/ 8701 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const compareBuild = _ _nccwpck _require _ _ ( 2156 )
const compareBuild = _ _nccwpck _require _ _ ( 2156 )
const rsort = ( list , loose ) => list . sort ( ( a , b ) => compareBuild ( b , a , loose ) )
const rsort = ( list , loose ) => list . sort ( ( a , b ) => compareBuild ( b , a , loose ) )
module . exports = rsort
module . exports = rsort
@ -62870,6 +62956,9 @@ module.exports = rsort
/***/ 6055 :
/***/ 6055 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const Range = _ _nccwpck _require _ _ ( 9828 )
const Range = _ _nccwpck _require _ _ ( 9828 )
const satisfies = ( version , range , options ) => {
const satisfies = ( version , range , options ) => {
try {
try {
@ -62887,6 +62976,9 @@ module.exports = satisfies
/***/ 1426 :
/***/ 1426 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const compareBuild = _ _nccwpck _require _ _ ( 2156 )
const compareBuild = _ _nccwpck _require _ _ ( 2156 )
const sort = ( list , loose ) => list . sort ( ( a , b ) => compareBuild ( a , b , loose ) )
const sort = ( list , loose ) => list . sort ( ( a , b ) => compareBuild ( a , b , loose ) )
module . exports = sort
module . exports = sort
@ -62897,6 +62989,9 @@ module.exports = sort
/***/ 9601 :
/***/ 9601 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const parse = _ _nccwpck _require _ _ ( 5925 )
const parse = _ _nccwpck _require _ _ ( 5925 )
const valid = ( version , options ) => {
const valid = ( version , options ) => {
const v = parse ( version , options )
const v = parse ( version , options )
@ -62910,6 +63005,9 @@ module.exports = valid
/***/ 1383 :
/***/ 1383 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
// just pre-load all the stuff that index.js lazily exports
// just pre-load all the stuff that index.js lazily exports
const internalRe = _ _nccwpck _require _ _ ( 9523 )
const internalRe = _ _nccwpck _require _ _ ( 9523 )
const constants = _ _nccwpck _require _ _ ( 2293 )
const constants = _ _nccwpck _require _ _ ( 2293 )
@ -63006,6 +63104,9 @@ module.exports = {
/***/ 2293 :
/***/ 2293 :
/***/ ( ( module ) => {
/***/ ( ( module ) => {
"use strict" ;
// Note: this is the semver.org version of the spec that it implements
// Note: this is the semver.org version of the spec that it implements
// Not necessarily the package version of this code.
// Not necessarily the package version of this code.
const SEMVER _SPEC _VERSION = '2.0.0'
const SEMVER _SPEC _VERSION = '2.0.0'
@ -63048,6 +63149,9 @@ module.exports = {
/***/ 427 :
/***/ 427 :
/***/ ( ( module ) => {
/***/ ( ( module ) => {
"use strict" ;
const debug = (
const debug = (
typeof process === 'object' &&
typeof process === 'object' &&
process . env &&
process . env &&
@ -63064,8 +63168,15 @@ module.exports = debug
/***/ 2463 :
/***/ 2463 :
/***/ ( ( module ) => {
/***/ ( ( module ) => {
"use strict" ;
const numeric = /^[0-9]+$/
const numeric = /^[0-9]+$/
const compareIdentifiers = ( a , b ) => {
const compareIdentifiers = ( a , b ) => {
if ( typeof a === 'number' && typeof b === 'number' ) {
return a === b ? 0 : a < b ? - 1 : 1
}
const anum = numeric . test ( a )
const anum = numeric . test ( a )
const bnum = numeric . test ( b )
const bnum = numeric . test ( b )
@ -63094,6 +63205,9 @@ module.exports = {
/***/ 5339 :
/***/ 5339 :
/***/ ( ( module ) => {
/***/ ( ( module ) => {
"use strict" ;
class LRUCache {
class LRUCache {
constructor ( ) {
constructor ( ) {
this . max = 1000
this . max = 1000
@ -63141,6 +63255,9 @@ module.exports = LRUCache
/***/ 785 :
/***/ 785 :
/***/ ( ( module ) => {
/***/ ( ( module ) => {
"use strict" ;
// parse out just the options we care about
// parse out just the options we care about
const looseOption = Object . freeze ( { loose : true } )
const looseOption = Object . freeze ( { loose : true } )
const emptyOpts = Object . freeze ( { } )
const emptyOpts = Object . freeze ( { } )
@ -63163,6 +63280,9 @@ module.exports = parseOptions
/***/ 9523 :
/***/ 9523 :
/***/ ( ( module , exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const {
const {
MAX _SAFE _COMPONENT _LENGTH ,
MAX _SAFE _COMPONENT _LENGTH ,
MAX _SAFE _BUILD _LENGTH ,
MAX _SAFE _BUILD _LENGTH ,
@ -63241,12 +63361,14 @@ createToken('MAINVERSIONLOOSE', `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.` +
// ## Pre-release Version Identifier
// ## Pre-release Version Identifier
// A numeric identifier, or a non-numeric identifier.
// A numeric identifier, or a non-numeric identifier.
// Non-numberic identifiers include numberic identifiers but can be longer.
// Therefore non-numberic identifiers must go first.
createToken ( 'PRERELEASEIDENTIFIER' , ` (?: ${ src [ t . NUMERICIDENTIFIER ]
createToken ( 'PRERELEASEIDENTIFIER' , ` (?: ${ src [ t . N ONN UMERICIDENTIFIER]
} | $ { src [ t . N ONN UMERICIDENTIFIER] } ) ` )
} | $ { src [ t . N UMERICIDENTIFIER] } ) ` )
createToken ( 'PRERELEASEIDENTIFIERLOOSE' , ` (?: ${ src [ t . N UMERICIDENTIFIERLOOSE ]
createToken ( 'PRERELEASEIDENTIFIERLOOSE' , ` (?: ${ src [ t . N ONN UMERICIDENTIFIER]
} | $ { src [ t . N ONN UMERICIDENTIFIER] } ) ` )
} | $ { src [ t . N UMERICIDENTIFIERLOOSE ] } ) ` )
// ## Pre-release Version
// ## Pre-release Version
// Hyphen, followed by one or more dot-separated pre-release version
// Hyphen, followed by one or more dot-separated pre-release version
@ -63389,6 +63511,9 @@ createToken('GTE0PRE', '^\\s*>=\\s*0\\.0\\.0-0\\s*$')
/***/ 9380 :
/***/ 9380 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
// Determine if version is greater than all the versions possible in the range.
// Determine if version is greater than all the versions possible in the range.
const outside = _ _nccwpck _require _ _ ( 420 )
const outside = _ _nccwpck _require _ _ ( 420 )
const gtr = ( version , range , options ) => outside ( version , range , '>' , options )
const gtr = ( version , range , options ) => outside ( version , range , '>' , options )
@ -63400,6 +63525,9 @@ module.exports = gtr
/***/ 7008 :
/***/ 7008 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const Range = _ _nccwpck _require _ _ ( 9828 )
const Range = _ _nccwpck _require _ _ ( 9828 )
const intersects = ( r1 , r2 , options ) => {
const intersects = ( r1 , r2 , options ) => {
r1 = new Range ( r1 , options )
r1 = new Range ( r1 , options )
@ -63414,6 +63542,9 @@ module.exports = intersects
/***/ 3323 :
/***/ 3323 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const outside = _ _nccwpck _require _ _ ( 420 )
const outside = _ _nccwpck _require _ _ ( 420 )
// Determine if version is less than all the versions possible in the range
// Determine if version is less than all the versions possible in the range
const ltr = ( version , range , options ) => outside ( version , range , '<' , options )
const ltr = ( version , range , options ) => outside ( version , range , '<' , options )
@ -63425,6 +63556,9 @@ module.exports = ltr
/***/ 579 :
/***/ 579 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const Range = _ _nccwpck _require _ _ ( 9828 )
const Range = _ _nccwpck _require _ _ ( 9828 )
@ -63457,6 +63591,9 @@ module.exports = maxSatisfying
/***/ 832 :
/***/ 832 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const Range = _ _nccwpck _require _ _ ( 9828 )
const Range = _ _nccwpck _require _ _ ( 9828 )
const minSatisfying = ( versions , range , options ) => {
const minSatisfying = ( versions , range , options ) => {
@ -63488,6 +63625,9 @@ module.exports = minSatisfying
/***/ 4179 :
/***/ 4179 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const Range = _ _nccwpck _require _ _ ( 9828 )
const Range = _ _nccwpck _require _ _ ( 9828 )
const gt = _ _nccwpck _require _ _ ( 4123 )
const gt = _ _nccwpck _require _ _ ( 4123 )
@ -63556,6 +63696,9 @@ module.exports = minVersion
/***/ 420 :
/***/ 420 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const SemVer = _ _nccwpck _require _ _ ( 8088 )
const Comparator = _ _nccwpck _require _ _ ( 1532 )
const Comparator = _ _nccwpck _require _ _ ( 1532 )
const { ANY } = Comparator
const { ANY } = Comparator
@ -63643,6 +63786,9 @@ module.exports = outside
/***/ 5297 :
/***/ 5297 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
// given a set of versions and a range, create a "simplified" range
// given a set of versions and a range, create a "simplified" range
// that includes the same versions that the original range does
// that includes the same versions that the original range does
// If the original range is shorter than the simplified one, return that.
// If the original range is shorter than the simplified one, return that.
@ -63697,6 +63843,9 @@ module.exports = (versions, range, options) => {
/***/ 7863 :
/***/ 7863 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const Range = _ _nccwpck _require _ _ ( 9828 )
const Range = _ _nccwpck _require _ _ ( 9828 )
const Comparator = _ _nccwpck _require _ _ ( 1532 )
const Comparator = _ _nccwpck _require _ _ ( 1532 )
const { ANY } = Comparator
const { ANY } = Comparator
@ -63951,6 +64100,9 @@ module.exports = subset
/***/ 2706 :
/***/ 2706 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const Range = _ _nccwpck _require _ _ ( 9828 )
const Range = _ _nccwpck _require _ _ ( 9828 )
// Mostly just for testing and legacy API reasons
// Mostly just for testing and legacy API reasons
@ -63966,6 +64118,9 @@ module.exports = toComparators
/***/ 2098 :
/***/ 2098 :
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
/***/ ( ( module , _ _unused _webpack _exports , _ _nccwpck _require _ _ ) => {
"use strict" ;
const Range = _ _nccwpck _require _ _ ( 9828 )
const Range = _ _nccwpck _require _ _ ( 9828 )
const validRange = ( range , options ) => {
const validRange = ( range , options ) => {
try {
try {