@@ -19297,13 +19297,13 @@ var jsYaml = {
1929719297const SEMVER_SPEC_VERSION = '2.0.0';
1929819298const MAX_LENGTH$2 = 256;
1929919299const MAX_SAFE_INTEGER$1 = Number.MAX_SAFE_INTEGER ||
19300- 9007199254740991;
19300+ 9007199254740991;
1930119301const MAX_SAFE_COMPONENT_LENGTH = 16;
1930219302var constants = {
1930319303 SEMVER_SPEC_VERSION,
1930419304 MAX_LENGTH: MAX_LENGTH$2,
1930519305 MAX_SAFE_INTEGER: MAX_SAFE_INTEGER$1,
19306- MAX_SAFE_COMPONENT_LENGTH
19306+ MAX_SAFE_COMPONENT_LENGTH,
1930719307};
1930819308
1930919309var re$2 = {exports: {}};
@@ -19327,7 +19327,7 @@ const t = exports.t = {};
1932719327let R = 0;
1932819328const createToken = (name, value, isGlobal) => {
1932919329 const index = R++;
19330- debug(index, value);
19330+ debug(name, index, value);
1933119331 t[name] = index;
1933219332 src[index] = value;
1933319333 re[index] = new RegExp(value, isGlobal ? 'g' : undefined);
@@ -19407,17 +19407,17 @@ createToken('HYPHENRANGELOOSE', `^\\s*(${src[t.XRANGEPLAINLOOSE]})` +
1940719407 `(${src[t.XRANGEPLAINLOOSE]})` +
1940819408 `\\s*$`);
1940919409createToken('STAR', '(<|>)?=?\\s*\\*');
19410- createToken('GTE0', '^\\s*>=\\s*0\.0 \.0\\s*$');
19411- createToken('GTE0PRE', '^\\s*>=\\s*0\.0 \.0-0\\s*$');
19410+ createToken('GTE0', '^\\s*>=\\s*0\\.0\ \.0\\s*$');
19411+ createToken('GTE0PRE', '^\\s*>=\\s*0\\.0\ \.0-0\\s*$');
1941219412}(re$2, re$2.exports));
1941319413
1941419414const opts = ['includePrerelease', 'loose', 'rtl'];
1941519415const parseOptions$2 = options =>
1941619416 !options ? {}
1941719417 : typeof options !== 'object' ? { loose: true }
19418- : opts.filter(k => options[k]).reduce((options , k) => {
19419- options [k] = true;
19420- return options
19418+ : opts.filter(k => options[k]).reduce((o , k) => {
19419+ o [k] = true;
19420+ return o
1942119421 }, {});
1942219422var parseOptions_1 = parseOptions$2;
1942319423
@@ -19438,7 +19438,7 @@ const compareIdentifiers$1 = (a, b) => {
1943819438const rcompareIdentifiers = (a, b) => compareIdentifiers$1(b, a);
1943919439var identifiers = {
1944019440 compareIdentifiers: compareIdentifiers$1,
19441- rcompareIdentifiers
19441+ rcompareIdentifiers,
1944219442};
1944319443
1944419444const debug = debug_1;
@@ -19652,7 +19652,7 @@ class SemVer$2 {
1965219652 }
1965319653 }
1965419654 if (identifier) {
19655- if (this.prerelease[0] === identifier ) {
19655+ if (compareIdentifiers( this.prerelease[0], identifier) === 0 ) {
1965619656 if (isNaN(this.prerelease[1])) {
1965719657 this.prerelease = [identifier, 0];
1965819658 }
@@ -19671,7 +19671,7 @@ class SemVer$2 {
1967119671}
1967219672var semver = SemVer$2;
1967319673
19674- const {MAX_LENGTH} = constants;
19674+ const { MAX_LENGTH } = constants;
1967519675const { re, t } = re$2.exports;
1967619676const SemVer$1 = semver;
1967719677const parseOptions = parseOptions_1;
0 commit comments