@storm-software/git-tools 2.105.1 → 2.105.2

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.
Files changed (4) hide show
  1. package/README.md +1 -1
  2. package/bin/git.cjs +1913 -4
  3. package/bin/git.js +2031 -4
  4. package/package.json +1 -1
package/bin/git.js CHANGED
@@ -56333,6 +56333,2033 @@ var require_versions = __commonJS({
56333
56333
  }
56334
56334
  });
56335
56335
 
56336
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/constants.js
56337
+ var require_constants2 = __commonJS({
56338
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/constants.js"(exports, module) {
56339
+ init_esm_shims();
56340
+ var SEMVER_SPEC_VERSION = "2.0.0";
56341
+ var MAX_LENGTH = 256;
56342
+ var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || /* istanbul ignore next */
56343
+ 9007199254740991;
56344
+ var MAX_SAFE_COMPONENT_LENGTH = 16;
56345
+ var MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6;
56346
+ var RELEASE_TYPES = [
56347
+ "major",
56348
+ "premajor",
56349
+ "minor",
56350
+ "preminor",
56351
+ "patch",
56352
+ "prepatch",
56353
+ "prerelease"
56354
+ ];
56355
+ module.exports = {
56356
+ MAX_LENGTH,
56357
+ MAX_SAFE_COMPONENT_LENGTH,
56358
+ MAX_SAFE_BUILD_LENGTH,
56359
+ MAX_SAFE_INTEGER,
56360
+ RELEASE_TYPES,
56361
+ SEMVER_SPEC_VERSION,
56362
+ FLAG_INCLUDE_PRERELEASE: 1,
56363
+ FLAG_LOOSE: 2
56364
+ };
56365
+ }
56366
+ });
56367
+
56368
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/debug.js
56369
+ var require_debug3 = __commonJS({
56370
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/debug.js"(exports, module) {
56371
+ init_esm_shims();
56372
+ var debug2 = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {
56373
+ };
56374
+ module.exports = debug2;
56375
+ }
56376
+ });
56377
+
56378
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/re.js
56379
+ var require_re2 = __commonJS({
56380
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/re.js"(exports, module) {
56381
+ init_esm_shims();
56382
+ var __import___constants = __toESM(require_constants2());
56383
+ var __import___debug = __toESM(require_debug3());
56384
+ var {
56385
+ MAX_SAFE_COMPONENT_LENGTH,
56386
+ MAX_SAFE_BUILD_LENGTH,
56387
+ MAX_LENGTH
56388
+ } = __import___constants;
56389
+ var debug2 = __import___debug;
56390
+ exports = module.exports = {};
56391
+ var re2 = exports.re = [];
56392
+ var safeRe = exports.safeRe = [];
56393
+ var src = exports.src = [];
56394
+ var safeSrc = exports.safeSrc = [];
56395
+ var t = exports.t = {};
56396
+ var R = 0;
56397
+ var LETTERDASHNUMBER = "[a-zA-Z0-9-]";
56398
+ var safeRegexReplacements = [
56399
+ ["\\s", 1],
56400
+ ["\\d", MAX_LENGTH],
56401
+ [LETTERDASHNUMBER, MAX_SAFE_BUILD_LENGTH]
56402
+ ];
56403
+ var makeSafeRegex = (value) => {
56404
+ for (const [token, max2] of safeRegexReplacements) {
56405
+ value = value.split(`${token}*`).join(`${token}{0,${max2}}`).split(`${token}+`).join(`${token}{1,${max2}}`);
56406
+ }
56407
+ return value;
56408
+ };
56409
+ var createToken = (name, value, isGlobal) => {
56410
+ const safe = makeSafeRegex(value);
56411
+ const index = R++;
56412
+ debug2(name, index, value);
56413
+ t[name] = index;
56414
+ src[index] = value;
56415
+ safeSrc[index] = safe;
56416
+ re2[index] = new RegExp(value, isGlobal ? "g" : void 0);
56417
+ safeRe[index] = new RegExp(safe, isGlobal ? "g" : void 0);
56418
+ };
56419
+ createToken("NUMERICIDENTIFIER", "0|[1-9]\\d*");
56420
+ createToken("NUMERICIDENTIFIERLOOSE", "\\d+");
56421
+ createToken("NONNUMERICIDENTIFIER", `\\d*[a-zA-Z-]${LETTERDASHNUMBER}*`);
56422
+ createToken("MAINVERSION", `(${src[t.NUMERICIDENTIFIER]})\\.(${src[t.NUMERICIDENTIFIER]})\\.(${src[t.NUMERICIDENTIFIER]})`);
56423
+ createToken("MAINVERSIONLOOSE", `(${src[t.NUMERICIDENTIFIERLOOSE]})\\.(${src[t.NUMERICIDENTIFIERLOOSE]})\\.(${src[t.NUMERICIDENTIFIERLOOSE]})`);
56424
+ createToken("PRERELEASEIDENTIFIER", `(?:${src[t.NUMERICIDENTIFIER]}|${src[t.NONNUMERICIDENTIFIER]})`);
56425
+ createToken("PRERELEASEIDENTIFIERLOOSE", `(?:${src[t.NUMERICIDENTIFIERLOOSE]}|${src[t.NONNUMERICIDENTIFIER]})`);
56426
+ createToken("PRERELEASE", `(?:-(${src[t.PRERELEASEIDENTIFIER]}(?:\\.${src[t.PRERELEASEIDENTIFIER]})*))`);
56427
+ createToken("PRERELEASELOOSE", `(?:-?(${src[t.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${src[t.PRERELEASEIDENTIFIERLOOSE]})*))`);
56428
+ createToken("BUILDIDENTIFIER", `${LETTERDASHNUMBER}+`);
56429
+ createToken("BUILD", `(?:\\+(${src[t.BUILDIDENTIFIER]}(?:\\.${src[t.BUILDIDENTIFIER]})*))`);
56430
+ createToken("FULLPLAIN", `v?${src[t.MAINVERSION]}${src[t.PRERELEASE]}?${src[t.BUILD]}?`);
56431
+ createToken("FULL", `^${src[t.FULLPLAIN]}$`);
56432
+ createToken("LOOSEPLAIN", `[v=\\s]*${src[t.MAINVERSIONLOOSE]}${src[t.PRERELEASELOOSE]}?${src[t.BUILD]}?`);
56433
+ createToken("LOOSE", `^${src[t.LOOSEPLAIN]}$`);
56434
+ createToken("GTLT", "((?:<|>)?=?)");
56435
+ createToken("XRANGEIDENTIFIERLOOSE", `${src[t.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`);
56436
+ createToken("XRANGEIDENTIFIER", `${src[t.NUMERICIDENTIFIER]}|x|X|\\*`);
56437
+ createToken("XRANGEPLAIN", `[v=\\s]*(${src[t.XRANGEIDENTIFIER]})(?:\\.(${src[t.XRANGEIDENTIFIER]})(?:\\.(${src[t.XRANGEIDENTIFIER]})(?:${src[t.PRERELEASE]})?${src[t.BUILD]}?)?)?`);
56438
+ createToken("XRANGEPLAINLOOSE", `[v=\\s]*(${src[t.XRANGEIDENTIFIERLOOSE]})(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})(?:\\.(${src[t.XRANGEIDENTIFIERLOOSE]})(?:${src[t.PRERELEASELOOSE]})?${src[t.BUILD]}?)?)?`);
56439
+ createToken("XRANGE", `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAIN]}$`);
56440
+ createToken("XRANGELOOSE", `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAINLOOSE]}$`);
56441
+ createToken("COERCEPLAIN", `${"(^|[^\\d])(\\d{1,"}${MAX_SAFE_COMPONENT_LENGTH}})(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`);
56442
+ createToken("COERCE", `${src[t.COERCEPLAIN]}(?:$|[^\\d])`);
56443
+ createToken("COERCEFULL", src[t.COERCEPLAIN] + `(?:${src[t.PRERELEASE]})?(?:${src[t.BUILD]})?(?:$|[^\\d])`);
56444
+ createToken("COERCERTL", src[t.COERCE], true);
56445
+ createToken("COERCERTLFULL", src[t.COERCEFULL], true);
56446
+ createToken("LONETILDE", "(?:~>?)");
56447
+ createToken("TILDETRIM", `(\\s*)${src[t.LONETILDE]}\\s+`, true);
56448
+ exports.tildeTrimReplace = "$1~";
56449
+ createToken("TILDE", `^${src[t.LONETILDE]}${src[t.XRANGEPLAIN]}$`);
56450
+ createToken("TILDELOOSE", `^${src[t.LONETILDE]}${src[t.XRANGEPLAINLOOSE]}$`);
56451
+ createToken("LONECARET", "(?:\\^)");
56452
+ createToken("CARETTRIM", `(\\s*)${src[t.LONECARET]}\\s+`, true);
56453
+ exports.caretTrimReplace = "$1^";
56454
+ createToken("CARET", `^${src[t.LONECARET]}${src[t.XRANGEPLAIN]}$`);
56455
+ createToken("CARETLOOSE", `^${src[t.LONECARET]}${src[t.XRANGEPLAINLOOSE]}$`);
56456
+ createToken("COMPARATORLOOSE", `^${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]})$|^$`);
56457
+ createToken("COMPARATOR", `^${src[t.GTLT]}\\s*(${src[t.FULLPLAIN]})$|^$`);
56458
+ createToken("COMPARATORTRIM", `(\\s*)${src[t.GTLT]}\\s*(${src[t.LOOSEPLAIN]}|${src[t.XRANGEPLAIN]})`, true);
56459
+ exports.comparatorTrimReplace = "$1$2$3";
56460
+ createToken("HYPHENRANGE", `^\\s*(${src[t.XRANGEPLAIN]})\\s+-\\s+(${src[t.XRANGEPLAIN]})\\s*$`);
56461
+ createToken("HYPHENRANGELOOSE", `^\\s*(${src[t.XRANGEPLAINLOOSE]})\\s+-\\s+(${src[t.XRANGEPLAINLOOSE]})\\s*$`);
56462
+ createToken("STAR", "(<|>)?=?\\s*\\*");
56463
+ createToken("GTE0", "^\\s*>=\\s*0\\.0\\.0\\s*$");
56464
+ createToken("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$");
56465
+ }
56466
+ });
56467
+
56468
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/parse-options.js
56469
+ var require_parse_options2 = __commonJS({
56470
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/parse-options.js"(exports, module) {
56471
+ init_esm_shims();
56472
+ var looseOption = Object.freeze({ loose: true });
56473
+ var emptyOpts = Object.freeze({});
56474
+ var parseOptions = (options) => {
56475
+ if (!options) {
56476
+ return emptyOpts;
56477
+ }
56478
+ if (typeof options !== "object") {
56479
+ return looseOption;
56480
+ }
56481
+ return options;
56482
+ };
56483
+ module.exports = parseOptions;
56484
+ }
56485
+ });
56486
+
56487
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/identifiers.js
56488
+ var require_identifiers2 = __commonJS({
56489
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/identifiers.js"(exports, module) {
56490
+ init_esm_shims();
56491
+ var numeric = /^[0-9]+$/;
56492
+ var compareIdentifiers = (a, b) => {
56493
+ const anum = numeric.test(a);
56494
+ const bnum = numeric.test(b);
56495
+ if (anum && bnum) {
56496
+ a = +a;
56497
+ b = +b;
56498
+ }
56499
+ return a === b ? 0 : anum && !bnum ? -1 : bnum && !anum ? 1 : a < b ? -1 : 1;
56500
+ };
56501
+ var rcompareIdentifiers = (a, b) => compareIdentifiers(b, a);
56502
+ module.exports = {
56503
+ compareIdentifiers,
56504
+ rcompareIdentifiers
56505
+ };
56506
+ }
56507
+ });
56508
+
56509
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/classes/semver.js
56510
+ var require_semver3 = __commonJS({
56511
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/classes/semver.js"(exports, module) {
56512
+ init_esm_shims();
56513
+ var __import____internal_debug = __toESM(require_debug3());
56514
+ var __import____internal_constants = __toESM(require_constants2());
56515
+ var __import____internal_re = __toESM(require_re2());
56516
+ var __import____internal_parseOptions = __toESM(require_parse_options2());
56517
+ var __import____internal_identifiers = __toESM(require_identifiers2());
56518
+ var debug2 = __import____internal_debug;
56519
+ var { MAX_LENGTH, MAX_SAFE_INTEGER } = __import____internal_constants;
56520
+ var { safeRe: re2, safeSrc: src, t } = __import____internal_re;
56521
+ var parseOptions = __import____internal_parseOptions;
56522
+ var { compareIdentifiers } = __import____internal_identifiers;
56523
+ var SemVer = class _SemVer {
56524
+ constructor(version2, options) {
56525
+ options = parseOptions(options);
56526
+ if (version2 instanceof _SemVer) {
56527
+ if (version2.loose === !!options.loose && version2.includePrerelease === !!options.includePrerelease) {
56528
+ return version2;
56529
+ } else {
56530
+ version2 = version2.version;
56531
+ }
56532
+ } else if (typeof version2 !== "string") {
56533
+ throw new TypeError(`Invalid version. Must be a string. Got type "${typeof version2}".`);
56534
+ }
56535
+ if (version2.length > MAX_LENGTH) {
56536
+ throw new TypeError(
56537
+ `version is longer than ${MAX_LENGTH} characters`
56538
+ );
56539
+ }
56540
+ debug2("SemVer", version2, options);
56541
+ this.options = options;
56542
+ this.loose = !!options.loose;
56543
+ this.includePrerelease = !!options.includePrerelease;
56544
+ const m = version2.trim().match(options.loose ? re2[t.LOOSE] : re2[t.FULL]);
56545
+ if (!m) {
56546
+ throw new TypeError(`Invalid Version: ${version2}`);
56547
+ }
56548
+ this.raw = version2;
56549
+ this.major = +m[1];
56550
+ this.minor = +m[2];
56551
+ this.patch = +m[3];
56552
+ if (this.major > MAX_SAFE_INTEGER || this.major < 0) {
56553
+ throw new TypeError("Invalid major version");
56554
+ }
56555
+ if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {
56556
+ throw new TypeError("Invalid minor version");
56557
+ }
56558
+ if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {
56559
+ throw new TypeError("Invalid patch version");
56560
+ }
56561
+ if (!m[4]) {
56562
+ this.prerelease = [];
56563
+ } else {
56564
+ this.prerelease = m[4].split(".").map((id) => {
56565
+ if (/^[0-9]+$/.test(id)) {
56566
+ const num2 = +id;
56567
+ if (num2 >= 0 && num2 < MAX_SAFE_INTEGER) {
56568
+ return num2;
56569
+ }
56570
+ }
56571
+ return id;
56572
+ });
56573
+ }
56574
+ this.build = m[5] ? m[5].split(".") : [];
56575
+ this.format();
56576
+ }
56577
+ format() {
56578
+ this.version = `${this.major}.${this.minor}.${this.patch}`;
56579
+ if (this.prerelease.length) {
56580
+ this.version += `-${this.prerelease.join(".")}`;
56581
+ }
56582
+ return this.version;
56583
+ }
56584
+ toString() {
56585
+ return this.version;
56586
+ }
56587
+ compare(other) {
56588
+ debug2("SemVer.compare", this.version, this.options, other);
56589
+ if (!(other instanceof _SemVer)) {
56590
+ if (typeof other === "string" && other === this.version) {
56591
+ return 0;
56592
+ }
56593
+ other = new _SemVer(other, this.options);
56594
+ }
56595
+ if (other.version === this.version) {
56596
+ return 0;
56597
+ }
56598
+ return this.compareMain(other) || this.comparePre(other);
56599
+ }
56600
+ compareMain(other) {
56601
+ if (!(other instanceof _SemVer)) {
56602
+ other = new _SemVer(other, this.options);
56603
+ }
56604
+ return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch);
56605
+ }
56606
+ comparePre(other) {
56607
+ if (!(other instanceof _SemVer)) {
56608
+ other = new _SemVer(other, this.options);
56609
+ }
56610
+ if (this.prerelease.length && !other.prerelease.length) {
56611
+ return -1;
56612
+ } else if (!this.prerelease.length && other.prerelease.length) {
56613
+ return 1;
56614
+ } else if (!this.prerelease.length && !other.prerelease.length) {
56615
+ return 0;
56616
+ }
56617
+ let i = 0;
56618
+ do {
56619
+ const a = this.prerelease[i];
56620
+ const b = other.prerelease[i];
56621
+ debug2("prerelease compare", i, a, b);
56622
+ if (a === void 0 && b === void 0) {
56623
+ return 0;
56624
+ } else if (b === void 0) {
56625
+ return 1;
56626
+ } else if (a === void 0) {
56627
+ return -1;
56628
+ } else if (a === b) {
56629
+ continue;
56630
+ } else {
56631
+ return compareIdentifiers(a, b);
56632
+ }
56633
+ } while (++i);
56634
+ }
56635
+ compareBuild(other) {
56636
+ if (!(other instanceof _SemVer)) {
56637
+ other = new _SemVer(other, this.options);
56638
+ }
56639
+ let i = 0;
56640
+ do {
56641
+ const a = this.build[i];
56642
+ const b = other.build[i];
56643
+ debug2("build compare", i, a, b);
56644
+ if (a === void 0 && b === void 0) {
56645
+ return 0;
56646
+ } else if (b === void 0) {
56647
+ return 1;
56648
+ } else if (a === void 0) {
56649
+ return -1;
56650
+ } else if (a === b) {
56651
+ continue;
56652
+ } else {
56653
+ return compareIdentifiers(a, b);
56654
+ }
56655
+ } while (++i);
56656
+ }
56657
+ // preminor will bump the version up to the next minor release, and immediately
56658
+ // down to pre-release. premajor and prepatch work the same way.
56659
+ inc(release, identifier, identifierBase) {
56660
+ if (release.startsWith("pre")) {
56661
+ if (!identifier && identifierBase === false) {
56662
+ throw new Error("invalid increment argument: identifier is empty");
56663
+ }
56664
+ if (identifier) {
56665
+ const r = new RegExp(`^${this.options.loose ? src[t.PRERELEASELOOSE] : src[t.PRERELEASE]}$`);
56666
+ const match = `-${identifier}`.match(r);
56667
+ if (!match || match[1] !== identifier) {
56668
+ throw new Error(`invalid identifier: ${identifier}`);
56669
+ }
56670
+ }
56671
+ }
56672
+ switch (release) {
56673
+ case "premajor":
56674
+ this.prerelease.length = 0;
56675
+ this.patch = 0;
56676
+ this.minor = 0;
56677
+ this.major++;
56678
+ this.inc("pre", identifier, identifierBase);
56679
+ break;
56680
+ case "preminor":
56681
+ this.prerelease.length = 0;
56682
+ this.patch = 0;
56683
+ this.minor++;
56684
+ this.inc("pre", identifier, identifierBase);
56685
+ break;
56686
+ case "prepatch":
56687
+ this.prerelease.length = 0;
56688
+ this.inc("patch", identifier, identifierBase);
56689
+ this.inc("pre", identifier, identifierBase);
56690
+ break;
56691
+ // If the input is a non-prerelease version, this acts the same as
56692
+ // prepatch.
56693
+ case "prerelease":
56694
+ if (this.prerelease.length === 0) {
56695
+ this.inc("patch", identifier, identifierBase);
56696
+ }
56697
+ this.inc("pre", identifier, identifierBase);
56698
+ break;
56699
+ case "release":
56700
+ if (this.prerelease.length === 0) {
56701
+ throw new Error(`version ${this.raw} is not a prerelease`);
56702
+ }
56703
+ this.prerelease.length = 0;
56704
+ break;
56705
+ case "major":
56706
+ if (this.minor !== 0 || this.patch !== 0 || this.prerelease.length === 0) {
56707
+ this.major++;
56708
+ }
56709
+ this.minor = 0;
56710
+ this.patch = 0;
56711
+ this.prerelease = [];
56712
+ break;
56713
+ case "minor":
56714
+ if (this.patch !== 0 || this.prerelease.length === 0) {
56715
+ this.minor++;
56716
+ }
56717
+ this.patch = 0;
56718
+ this.prerelease = [];
56719
+ break;
56720
+ case "patch":
56721
+ if (this.prerelease.length === 0) {
56722
+ this.patch++;
56723
+ }
56724
+ this.prerelease = [];
56725
+ break;
56726
+ // This probably shouldn't be used publicly.
56727
+ // 1.0.0 'pre' would become 1.0.0-0 which is the wrong direction.
56728
+ case "pre": {
56729
+ const base = Number(identifierBase) ? 1 : 0;
56730
+ if (this.prerelease.length === 0) {
56731
+ this.prerelease = [base];
56732
+ } else {
56733
+ let i = this.prerelease.length;
56734
+ while (--i >= 0) {
56735
+ if (typeof this.prerelease[i] === "number") {
56736
+ this.prerelease[i]++;
56737
+ i = -2;
56738
+ }
56739
+ }
56740
+ if (i === -1) {
56741
+ if (identifier === this.prerelease.join(".") && identifierBase === false) {
56742
+ throw new Error("invalid increment argument: identifier already exists");
56743
+ }
56744
+ this.prerelease.push(base);
56745
+ }
56746
+ }
56747
+ if (identifier) {
56748
+ let prerelease = [identifier, base];
56749
+ if (identifierBase === false) {
56750
+ prerelease = [identifier];
56751
+ }
56752
+ if (compareIdentifiers(this.prerelease[0], identifier) === 0) {
56753
+ if (isNaN(this.prerelease[1])) {
56754
+ this.prerelease = prerelease;
56755
+ }
56756
+ } else {
56757
+ this.prerelease = prerelease;
56758
+ }
56759
+ }
56760
+ break;
56761
+ }
56762
+ default:
56763
+ throw new Error(`invalid increment argument: ${release}`);
56764
+ }
56765
+ this.raw = this.format();
56766
+ if (this.build.length) {
56767
+ this.raw += `+${this.build.join(".")}`;
56768
+ }
56769
+ return this;
56770
+ }
56771
+ };
56772
+ module.exports = SemVer;
56773
+ }
56774
+ });
56775
+
56776
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/parse.js
56777
+ var require_parse3 = __commonJS({
56778
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/parse.js"(exports, module) {
56779
+ init_esm_shims();
56780
+ var __import____classes_semver = __toESM(require_semver3());
56781
+ var SemVer = __import____classes_semver;
56782
+ var parse2 = (version2, options, throwErrors = false) => {
56783
+ if (version2 instanceof SemVer) {
56784
+ return version2;
56785
+ }
56786
+ try {
56787
+ return new SemVer(version2, options);
56788
+ } catch (er) {
56789
+ if (!throwErrors) {
56790
+ return null;
56791
+ }
56792
+ throw er;
56793
+ }
56794
+ };
56795
+ module.exports = parse2;
56796
+ }
56797
+ });
56798
+
56799
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/valid.js
56800
+ var require_valid3 = __commonJS({
56801
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/valid.js"(exports, module) {
56802
+ init_esm_shims();
56803
+ var __import___parse = __toESM(require_parse3());
56804
+ var parse2 = __import___parse;
56805
+ var valid2 = (version2, options) => {
56806
+ const v = parse2(version2, options);
56807
+ return v ? v.version : null;
56808
+ };
56809
+ module.exports = valid2;
56810
+ }
56811
+ });
56812
+
56813
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/clean.js
56814
+ var require_clean2 = __commonJS({
56815
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/clean.js"(exports, module) {
56816
+ init_esm_shims();
56817
+ var __import___parse = __toESM(require_parse3());
56818
+ var parse2 = __import___parse;
56819
+ var clean = (version2, options) => {
56820
+ const s = parse2(version2.trim().replace(/^[=v]+/, ""), options);
56821
+ return s ? s.version : null;
56822
+ };
56823
+ module.exports = clean;
56824
+ }
56825
+ });
56826
+
56827
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/inc.js
56828
+ var require_inc2 = __commonJS({
56829
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/inc.js"(exports, module) {
56830
+ init_esm_shims();
56831
+ var __import____classes_semver = __toESM(require_semver3());
56832
+ var SemVer = __import____classes_semver;
56833
+ var inc = (version2, release, options, identifier, identifierBase) => {
56834
+ if (typeof options === "string") {
56835
+ identifierBase = identifier;
56836
+ identifier = options;
56837
+ options = void 0;
56838
+ }
56839
+ try {
56840
+ return new SemVer(
56841
+ version2 instanceof SemVer ? version2.version : version2,
56842
+ options
56843
+ ).inc(release, identifier, identifierBase).version;
56844
+ } catch (er) {
56845
+ return null;
56846
+ }
56847
+ };
56848
+ module.exports = inc;
56849
+ }
56850
+ });
56851
+
56852
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/diff.js
56853
+ var require_diff2 = __commonJS({
56854
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/diff.js"(exports, module) {
56855
+ init_esm_shims();
56856
+ var __import___parse_js = __toESM(require_parse3());
56857
+ var parse2 = __import___parse_js;
56858
+ var diff = (version1, version2) => {
56859
+ const v1 = parse2(version1, null, true);
56860
+ const v2 = parse2(version2, null, true);
56861
+ const comparison = v1.compare(v2);
56862
+ if (comparison === 0) {
56863
+ return null;
56864
+ }
56865
+ const v1Higher = comparison > 0;
56866
+ const highVersion = v1Higher ? v1 : v2;
56867
+ const lowVersion = v1Higher ? v2 : v1;
56868
+ const highHasPre = !!highVersion.prerelease.length;
56869
+ const lowHasPre = !!lowVersion.prerelease.length;
56870
+ if (lowHasPre && !highHasPre) {
56871
+ if (!lowVersion.patch && !lowVersion.minor) {
56872
+ return "major";
56873
+ }
56874
+ if (lowVersion.compareMain(highVersion) === 0) {
56875
+ if (lowVersion.minor && !lowVersion.patch) {
56876
+ return "minor";
56877
+ }
56878
+ return "patch";
56879
+ }
56880
+ }
56881
+ const prefix = highHasPre ? "pre" : "";
56882
+ if (v1.major !== v2.major) {
56883
+ return prefix + "major";
56884
+ }
56885
+ if (v1.minor !== v2.minor) {
56886
+ return prefix + "minor";
56887
+ }
56888
+ if (v1.patch !== v2.patch) {
56889
+ return prefix + "patch";
56890
+ }
56891
+ return "prerelease";
56892
+ };
56893
+ module.exports = diff;
56894
+ }
56895
+ });
56896
+
56897
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/major.js
56898
+ var require_major2 = __commonJS({
56899
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/major.js"(exports, module) {
56900
+ init_esm_shims();
56901
+ var __import____classes_semver = __toESM(require_semver3());
56902
+ var SemVer = __import____classes_semver;
56903
+ var major2 = (a, loose) => new SemVer(a, loose).major;
56904
+ module.exports = major2;
56905
+ }
56906
+ });
56907
+
56908
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/minor.js
56909
+ var require_minor2 = __commonJS({
56910
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/minor.js"(exports, module) {
56911
+ init_esm_shims();
56912
+ var __import____classes_semver = __toESM(require_semver3());
56913
+ var SemVer = __import____classes_semver;
56914
+ var minor = (a, loose) => new SemVer(a, loose).minor;
56915
+ module.exports = minor;
56916
+ }
56917
+ });
56918
+
56919
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/patch.js
56920
+ var require_patch2 = __commonJS({
56921
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/patch.js"(exports, module) {
56922
+ init_esm_shims();
56923
+ var __import____classes_semver = __toESM(require_semver3());
56924
+ var SemVer = __import____classes_semver;
56925
+ var patch = (a, loose) => new SemVer(a, loose).patch;
56926
+ module.exports = patch;
56927
+ }
56928
+ });
56929
+
56930
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/prerelease.js
56931
+ var require_prerelease2 = __commonJS({
56932
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/prerelease.js"(exports, module) {
56933
+ init_esm_shims();
56934
+ var __import___parse = __toESM(require_parse3());
56935
+ var parse2 = __import___parse;
56936
+ var prerelease = (version2, options) => {
56937
+ const parsed = parse2(version2, options);
56938
+ return parsed && parsed.prerelease.length ? parsed.prerelease : null;
56939
+ };
56940
+ module.exports = prerelease;
56941
+ }
56942
+ });
56943
+
56944
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/compare.js
56945
+ var require_compare2 = __commonJS({
56946
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/compare.js"(exports, module) {
56947
+ init_esm_shims();
56948
+ var __import____classes_semver = __toESM(require_semver3());
56949
+ var SemVer = __import____classes_semver;
56950
+ var compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
56951
+ module.exports = compare;
56952
+ }
56953
+ });
56954
+
56955
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/rcompare.js
56956
+ var require_rcompare2 = __commonJS({
56957
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/rcompare.js"(exports, module) {
56958
+ init_esm_shims();
56959
+ var __import___compare = __toESM(require_compare2());
56960
+ var compare = __import___compare;
56961
+ var rcompare = (a, b, loose) => compare(b, a, loose);
56962
+ module.exports = rcompare;
56963
+ }
56964
+ });
56965
+
56966
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/compare-loose.js
56967
+ var require_compare_loose2 = __commonJS({
56968
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/compare-loose.js"(exports, module) {
56969
+ init_esm_shims();
56970
+ var __import___compare = __toESM(require_compare2());
56971
+ var compare = __import___compare;
56972
+ var compareLoose = (a, b) => compare(a, b, true);
56973
+ module.exports = compareLoose;
56974
+ }
56975
+ });
56976
+
56977
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/compare-build.js
56978
+ var require_compare_build2 = __commonJS({
56979
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/compare-build.js"(exports, module) {
56980
+ init_esm_shims();
56981
+ var __import____classes_semver = __toESM(require_semver3());
56982
+ var SemVer = __import____classes_semver;
56983
+ var compareBuild = (a, b, loose) => {
56984
+ const versionA = new SemVer(a, loose);
56985
+ const versionB = new SemVer(b, loose);
56986
+ return versionA.compare(versionB) || versionA.compareBuild(versionB);
56987
+ };
56988
+ module.exports = compareBuild;
56989
+ }
56990
+ });
56991
+
56992
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/sort.js
56993
+ var require_sort3 = __commonJS({
56994
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/sort.js"(exports, module) {
56995
+ init_esm_shims();
56996
+ var __import___compareBuild = __toESM(require_compare_build2());
56997
+ var compareBuild = __import___compareBuild;
56998
+ var sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));
56999
+ module.exports = sort;
57000
+ }
57001
+ });
57002
+
57003
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/rsort.js
57004
+ var require_rsort2 = __commonJS({
57005
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/rsort.js"(exports, module) {
57006
+ init_esm_shims();
57007
+ var __import___compareBuild = __toESM(require_compare_build2());
57008
+ var compareBuild = __import___compareBuild;
57009
+ var rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));
57010
+ module.exports = rsort;
57011
+ }
57012
+ });
57013
+
57014
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/gt.js
57015
+ var require_gt2 = __commonJS({
57016
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/gt.js"(exports, module) {
57017
+ init_esm_shims();
57018
+ var __import___compare = __toESM(require_compare2());
57019
+ var compare = __import___compare;
57020
+ var gt2 = (a, b, loose) => compare(a, b, loose) > 0;
57021
+ module.exports = gt2;
57022
+ }
57023
+ });
57024
+
57025
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/lt.js
57026
+ var require_lt2 = __commonJS({
57027
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/lt.js"(exports, module) {
57028
+ init_esm_shims();
57029
+ var __import___compare = __toESM(require_compare2());
57030
+ var compare = __import___compare;
57031
+ var lt2 = (a, b, loose) => compare(a, b, loose) < 0;
57032
+ module.exports = lt2;
57033
+ }
57034
+ });
57035
+
57036
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/eq.js
57037
+ var require_eq2 = __commonJS({
57038
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/eq.js"(exports, module) {
57039
+ init_esm_shims();
57040
+ var __import___compare = __toESM(require_compare2());
57041
+ var compare = __import___compare;
57042
+ var eq2 = (a, b, loose) => compare(a, b, loose) === 0;
57043
+ module.exports = eq2;
57044
+ }
57045
+ });
57046
+
57047
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/neq.js
57048
+ var require_neq2 = __commonJS({
57049
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/neq.js"(exports, module) {
57050
+ init_esm_shims();
57051
+ var __import___compare = __toESM(require_compare2());
57052
+ var compare = __import___compare;
57053
+ var neq = (a, b, loose) => compare(a, b, loose) !== 0;
57054
+ module.exports = neq;
57055
+ }
57056
+ });
57057
+
57058
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/gte.js
57059
+ var require_gte2 = __commonJS({
57060
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/gte.js"(exports, module) {
57061
+ init_esm_shims();
57062
+ var __import___compare = __toESM(require_compare2());
57063
+ var compare = __import___compare;
57064
+ var gte = (a, b, loose) => compare(a, b, loose) >= 0;
57065
+ module.exports = gte;
57066
+ }
57067
+ });
57068
+
57069
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/lte.js
57070
+ var require_lte2 = __commonJS({
57071
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/lte.js"(exports, module) {
57072
+ init_esm_shims();
57073
+ var __import___compare = __toESM(require_compare2());
57074
+ var compare = __import___compare;
57075
+ var lte = (a, b, loose) => compare(a, b, loose) <= 0;
57076
+ module.exports = lte;
57077
+ }
57078
+ });
57079
+
57080
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/cmp.js
57081
+ var require_cmp2 = __commonJS({
57082
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/cmp.js"(exports, module) {
57083
+ init_esm_shims();
57084
+ var __import___eq = __toESM(require_eq2());
57085
+ var __import___neq = __toESM(require_neq2());
57086
+ var __import___gt = __toESM(require_gt2());
57087
+ var __import___gte = __toESM(require_gte2());
57088
+ var __import___lt = __toESM(require_lt2());
57089
+ var __import___lte = __toESM(require_lte2());
57090
+ var eq2 = __import___eq;
57091
+ var neq = __import___neq;
57092
+ var gt2 = __import___gt;
57093
+ var gte = __import___gte;
57094
+ var lt2 = __import___lt;
57095
+ var lte = __import___lte;
57096
+ var cmp = (a, op, b, loose) => {
57097
+ switch (op) {
57098
+ case "===":
57099
+ if (typeof a === "object") {
57100
+ a = a.version;
57101
+ }
57102
+ if (typeof b === "object") {
57103
+ b = b.version;
57104
+ }
57105
+ return a === b;
57106
+ case "!==":
57107
+ if (typeof a === "object") {
57108
+ a = a.version;
57109
+ }
57110
+ if (typeof b === "object") {
57111
+ b = b.version;
57112
+ }
57113
+ return a !== b;
57114
+ case "":
57115
+ case "=":
57116
+ case "==":
57117
+ return eq2(a, b, loose);
57118
+ case "!=":
57119
+ return neq(a, b, loose);
57120
+ case ">":
57121
+ return gt2(a, b, loose);
57122
+ case ">=":
57123
+ return gte(a, b, loose);
57124
+ case "<":
57125
+ return lt2(a, b, loose);
57126
+ case "<=":
57127
+ return lte(a, b, loose);
57128
+ default:
57129
+ throw new TypeError(`Invalid operator: ${op}`);
57130
+ }
57131
+ };
57132
+ module.exports = cmp;
57133
+ }
57134
+ });
57135
+
57136
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/coerce.js
57137
+ var require_coerce2 = __commonJS({
57138
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/coerce.js"(exports, module) {
57139
+ init_esm_shims();
57140
+ var __import____classes_semver = __toESM(require_semver3());
57141
+ var __import___parse = __toESM(require_parse3());
57142
+ var __import____internal_re = __toESM(require_re2());
57143
+ var SemVer = __import____classes_semver;
57144
+ var parse2 = __import___parse;
57145
+ var { safeRe: re2, t } = __import____internal_re;
57146
+ var coerce = (version2, options) => {
57147
+ if (version2 instanceof SemVer) {
57148
+ return version2;
57149
+ }
57150
+ if (typeof version2 === "number") {
57151
+ version2 = String(version2);
57152
+ }
57153
+ if (typeof version2 !== "string") {
57154
+ return null;
57155
+ }
57156
+ options = options || {};
57157
+ let match = null;
57158
+ if (!options.rtl) {
57159
+ match = version2.match(options.includePrerelease ? re2[t.COERCEFULL] : re2[t.COERCE]);
57160
+ } else {
57161
+ const coerceRtlRegex = options.includePrerelease ? re2[t.COERCERTLFULL] : re2[t.COERCERTL];
57162
+ let next;
57163
+ while ((next = coerceRtlRegex.exec(version2)) && (!match || match.index + match[0].length !== version2.length)) {
57164
+ if (!match || next.index + next[0].length !== match.index + match[0].length) {
57165
+ match = next;
57166
+ }
57167
+ coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length;
57168
+ }
57169
+ coerceRtlRegex.lastIndex = -1;
57170
+ }
57171
+ if (match === null) {
57172
+ return null;
57173
+ }
57174
+ const major2 = match[2];
57175
+ const minor = match[3] || "0";
57176
+ const patch = match[4] || "0";
57177
+ const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : "";
57178
+ const build = options.includePrerelease && match[6] ? `+${match[6]}` : "";
57179
+ return parse2(`${major2}.${minor}.${patch}${prerelease}${build}`, options);
57180
+ };
57181
+ module.exports = coerce;
57182
+ }
57183
+ });
57184
+
57185
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/lrucache.js
57186
+ var require_lrucache2 = __commonJS({
57187
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/internal/lrucache.js"(exports, module) {
57188
+ init_esm_shims();
57189
+ var LRUCache = class {
57190
+ constructor() {
57191
+ this.max = 1e3;
57192
+ this.map = /* @__PURE__ */ new Map();
57193
+ }
57194
+ get(key) {
57195
+ const value = this.map.get(key);
57196
+ if (value === void 0) {
57197
+ return void 0;
57198
+ } else {
57199
+ this.map.delete(key);
57200
+ this.map.set(key, value);
57201
+ return value;
57202
+ }
57203
+ }
57204
+ delete(key) {
57205
+ return this.map.delete(key);
57206
+ }
57207
+ set(key, value) {
57208
+ const deleted = this.delete(key);
57209
+ if (!deleted && value !== void 0) {
57210
+ if (this.map.size >= this.max) {
57211
+ const firstKey = this.map.keys().next().value;
57212
+ this.delete(firstKey);
57213
+ }
57214
+ this.map.set(key, value);
57215
+ }
57216
+ return this;
57217
+ }
57218
+ };
57219
+ module.exports = LRUCache;
57220
+ }
57221
+ });
57222
+
57223
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/classes/range.js
57224
+ var require_range3 = __commonJS({
57225
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/classes/range.js"(exports, module) {
57226
+ init_esm_shims();
57227
+ var __import____internal_lrucache = __toESM(require_lrucache2());
57228
+ var __import____internal_parseOptions = __toESM(require_parse_options2());
57229
+ var __import___comparator = __toESM(require_comparator2());
57230
+ var __import____internal_debug = __toESM(require_debug3());
57231
+ var __import___semver = __toESM(require_semver3());
57232
+ var __import____internal_re = __toESM(require_re2());
57233
+ var __import____internal_constants = __toESM(require_constants2());
57234
+ var SPACE_CHARACTERS = /\s+/g;
57235
+ var Range = class _Range {
57236
+ constructor(range3, options) {
57237
+ options = parseOptions(options);
57238
+ if (range3 instanceof _Range) {
57239
+ if (range3.loose === !!options.loose && range3.includePrerelease === !!options.includePrerelease) {
57240
+ return range3;
57241
+ } else {
57242
+ return new _Range(range3.raw, options);
57243
+ }
57244
+ }
57245
+ if (range3 instanceof Comparator) {
57246
+ this.raw = range3.value;
57247
+ this.set = [[range3]];
57248
+ this.formatted = void 0;
57249
+ return this;
57250
+ }
57251
+ this.options = options;
57252
+ this.loose = !!options.loose;
57253
+ this.includePrerelease = !!options.includePrerelease;
57254
+ this.raw = range3.trim().replace(SPACE_CHARACTERS, " ");
57255
+ this.set = this.raw.split("||").map((r) => this.parseRange(r.trim())).filter((c) => c.length);
57256
+ if (!this.set.length) {
57257
+ throw new TypeError(`Invalid SemVer Range: ${this.raw}`);
57258
+ }
57259
+ if (this.set.length > 1) {
57260
+ const first2 = this.set[0];
57261
+ this.set = this.set.filter((c) => !isNullSet(c[0]));
57262
+ if (this.set.length === 0) {
57263
+ this.set = [first2];
57264
+ } else if (this.set.length > 1) {
57265
+ for (const c of this.set) {
57266
+ if (c.length === 1 && isAny(c[0])) {
57267
+ this.set = [c];
57268
+ break;
57269
+ }
57270
+ }
57271
+ }
57272
+ }
57273
+ this.formatted = void 0;
57274
+ }
57275
+ get range() {
57276
+ if (this.formatted === void 0) {
57277
+ this.formatted = "";
57278
+ for (let i = 0; i < this.set.length; i++) {
57279
+ if (i > 0) {
57280
+ this.formatted += "||";
57281
+ }
57282
+ const comps = this.set[i];
57283
+ for (let k = 0; k < comps.length; k++) {
57284
+ if (k > 0) {
57285
+ this.formatted += " ";
57286
+ }
57287
+ this.formatted += comps[k].toString().trim();
57288
+ }
57289
+ }
57290
+ }
57291
+ return this.formatted;
57292
+ }
57293
+ format() {
57294
+ return this.range;
57295
+ }
57296
+ toString() {
57297
+ return this.range;
57298
+ }
57299
+ parseRange(range3) {
57300
+ const memoOpts = (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) | (this.options.loose && FLAG_LOOSE);
57301
+ const memoKey = memoOpts + ":" + range3;
57302
+ const cached = cache.get(memoKey);
57303
+ if (cached) {
57304
+ return cached;
57305
+ }
57306
+ const loose = this.options.loose;
57307
+ const hr = loose ? re2[t.HYPHENRANGELOOSE] : re2[t.HYPHENRANGE];
57308
+ range3 = range3.replace(hr, hyphenReplace(this.options.includePrerelease));
57309
+ debug2("hyphen replace", range3);
57310
+ range3 = range3.replace(re2[t.COMPARATORTRIM], comparatorTrimReplace);
57311
+ debug2("comparator trim", range3);
57312
+ range3 = range3.replace(re2[t.TILDETRIM], tildeTrimReplace);
57313
+ debug2("tilde trim", range3);
57314
+ range3 = range3.replace(re2[t.CARETTRIM], caretTrimReplace);
57315
+ debug2("caret trim", range3);
57316
+ let rangeList = range3.split(" ").map((comp2) => parseComparator(comp2, this.options)).join(" ").split(/\s+/).map((comp2) => replaceGTE0(comp2, this.options));
57317
+ if (loose) {
57318
+ rangeList = rangeList.filter((comp2) => {
57319
+ debug2("loose invalid filter", comp2, this.options);
57320
+ return !!comp2.match(re2[t.COMPARATORLOOSE]);
57321
+ });
57322
+ }
57323
+ debug2("range list", rangeList);
57324
+ const rangeMap = /* @__PURE__ */ new Map();
57325
+ const comparators = rangeList.map((comp2) => new Comparator(comp2, this.options));
57326
+ for (const comp2 of comparators) {
57327
+ if (isNullSet(comp2)) {
57328
+ return [comp2];
57329
+ }
57330
+ rangeMap.set(comp2.value, comp2);
57331
+ }
57332
+ if (rangeMap.size > 1 && rangeMap.has("")) {
57333
+ rangeMap.delete("");
57334
+ }
57335
+ const result2 = [...rangeMap.values()];
57336
+ cache.set(memoKey, result2);
57337
+ return result2;
57338
+ }
57339
+ intersects(range3, options) {
57340
+ if (!(range3 instanceof _Range)) {
57341
+ throw new TypeError("a Range is required");
57342
+ }
57343
+ return this.set.some((thisComparators) => {
57344
+ return isSatisfiable(thisComparators, options) && range3.set.some((rangeComparators) => {
57345
+ return isSatisfiable(rangeComparators, options) && thisComparators.every((thisComparator) => {
57346
+ return rangeComparators.every((rangeComparator) => {
57347
+ return thisComparator.intersects(rangeComparator, options);
57348
+ });
57349
+ });
57350
+ });
57351
+ });
57352
+ }
57353
+ // if ANY of the sets match ALL of its comparators, then pass
57354
+ test(version2) {
57355
+ if (!version2) {
57356
+ return false;
57357
+ }
57358
+ if (typeof version2 === "string") {
57359
+ try {
57360
+ version2 = new SemVer(version2, this.options);
57361
+ } catch (er) {
57362
+ return false;
57363
+ }
57364
+ }
57365
+ for (let i = 0; i < this.set.length; i++) {
57366
+ if (testSet(this.set[i], version2, this.options)) {
57367
+ return true;
57368
+ }
57369
+ }
57370
+ return false;
57371
+ }
57372
+ };
57373
+ module.exports = Range;
57374
+ var LRU = __import____internal_lrucache;
57375
+ var cache = new LRU();
57376
+ var parseOptions = __import____internal_parseOptions;
57377
+ var Comparator = __import___comparator;
57378
+ var debug2 = __import____internal_debug;
57379
+ var SemVer = __import___semver;
57380
+ var {
57381
+ safeRe: re2,
57382
+ t,
57383
+ comparatorTrimReplace,
57384
+ tildeTrimReplace,
57385
+ caretTrimReplace
57386
+ } = __import____internal_re;
57387
+ var { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __import____internal_constants;
57388
+ var isNullSet = (c) => c.value === "<0.0.0-0";
57389
+ var isAny = (c) => c.value === "";
57390
+ var isSatisfiable = (comparators, options) => {
57391
+ let result2 = true;
57392
+ const remainingComparators = comparators.slice();
57393
+ let testComparator = remainingComparators.pop();
57394
+ while (result2 && remainingComparators.length) {
57395
+ result2 = remainingComparators.every((otherComparator) => {
57396
+ return testComparator.intersects(otherComparator, options);
57397
+ });
57398
+ testComparator = remainingComparators.pop();
57399
+ }
57400
+ return result2;
57401
+ };
57402
+ var parseComparator = (comp2, options) => {
57403
+ debug2("comp", comp2, options);
57404
+ comp2 = replaceCarets(comp2, options);
57405
+ debug2("caret", comp2);
57406
+ comp2 = replaceTildes(comp2, options);
57407
+ debug2("tildes", comp2);
57408
+ comp2 = replaceXRanges(comp2, options);
57409
+ debug2("xrange", comp2);
57410
+ comp2 = replaceStars(comp2, options);
57411
+ debug2("stars", comp2);
57412
+ return comp2;
57413
+ };
57414
+ var isX = (id) => !id || id.toLowerCase() === "x" || id === "*";
57415
+ var replaceTildes = (comp2, options) => {
57416
+ return comp2.trim().split(/\s+/).map((c) => replaceTilde(c, options)).join(" ");
57417
+ };
57418
+ var replaceTilde = (comp2, options) => {
57419
+ const r = options.loose ? re2[t.TILDELOOSE] : re2[t.TILDE];
57420
+ return comp2.replace(r, (_3, M, m, p, pr2) => {
57421
+ debug2("tilde", comp2, _3, M, m, p, pr2);
57422
+ let ret;
57423
+ if (isX(M)) {
57424
+ ret = "";
57425
+ } else if (isX(m)) {
57426
+ ret = `>=${M}.0.0 <${+M + 1}.0.0-0`;
57427
+ } else if (isX(p)) {
57428
+ ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0`;
57429
+ } else if (pr2) {
57430
+ debug2("replaceTilde pr", pr2);
57431
+ ret = `>=${M}.${m}.${p}-${pr2} <${M}.${+m + 1}.0-0`;
57432
+ } else {
57433
+ ret = `>=${M}.${m}.${p} <${M}.${+m + 1}.0-0`;
57434
+ }
57435
+ debug2("tilde return", ret);
57436
+ return ret;
57437
+ });
57438
+ };
57439
+ var replaceCarets = (comp2, options) => {
57440
+ return comp2.trim().split(/\s+/).map((c) => replaceCaret(c, options)).join(" ");
57441
+ };
57442
+ var replaceCaret = (comp2, options) => {
57443
+ debug2("caret", comp2, options);
57444
+ const r = options.loose ? re2[t.CARETLOOSE] : re2[t.CARET];
57445
+ const z = options.includePrerelease ? "-0" : "";
57446
+ return comp2.replace(r, (_3, M, m, p, pr2) => {
57447
+ debug2("caret", comp2, _3, M, m, p, pr2);
57448
+ let ret;
57449
+ if (isX(M)) {
57450
+ ret = "";
57451
+ } else if (isX(m)) {
57452
+ ret = `>=${M}.0.0${z} <${+M + 1}.0.0-0`;
57453
+ } else if (isX(p)) {
57454
+ if (M === "0") {
57455
+ ret = `>=${M}.${m}.0${z} <${M}.${+m + 1}.0-0`;
57456
+ } else {
57457
+ ret = `>=${M}.${m}.0${z} <${+M + 1}.0.0-0`;
57458
+ }
57459
+ } else if (pr2) {
57460
+ debug2("replaceCaret pr", pr2);
57461
+ if (M === "0") {
57462
+ if (m === "0") {
57463
+ ret = `>=${M}.${m}.${p}-${pr2} <${M}.${m}.${+p + 1}-0`;
57464
+ } else {
57465
+ ret = `>=${M}.${m}.${p}-${pr2} <${M}.${+m + 1}.0-0`;
57466
+ }
57467
+ } else {
57468
+ ret = `>=${M}.${m}.${p}-${pr2} <${+M + 1}.0.0-0`;
57469
+ }
57470
+ } else {
57471
+ debug2("no pr");
57472
+ if (M === "0") {
57473
+ if (m === "0") {
57474
+ ret = `>=${M}.${m}.${p}${z} <${M}.${m}.${+p + 1}-0`;
57475
+ } else {
57476
+ ret = `>=${M}.${m}.${p}${z} <${M}.${+m + 1}.0-0`;
57477
+ }
57478
+ } else {
57479
+ ret = `>=${M}.${m}.${p} <${+M + 1}.0.0-0`;
57480
+ }
57481
+ }
57482
+ debug2("caret return", ret);
57483
+ return ret;
57484
+ });
57485
+ };
57486
+ var replaceXRanges = (comp2, options) => {
57487
+ debug2("replaceXRanges", comp2, options);
57488
+ return comp2.split(/\s+/).map((c) => replaceXRange(c, options)).join(" ");
57489
+ };
57490
+ var replaceXRange = (comp2, options) => {
57491
+ comp2 = comp2.trim();
57492
+ const r = options.loose ? re2[t.XRANGELOOSE] : re2[t.XRANGE];
57493
+ return comp2.replace(r, (ret, gtlt, M, m, p, pr2) => {
57494
+ debug2("xRange", comp2, ret, gtlt, M, m, p, pr2);
57495
+ const xM = isX(M);
57496
+ const xm = xM || isX(m);
57497
+ const xp = xm || isX(p);
57498
+ const anyX = xp;
57499
+ if (gtlt === "=" && anyX) {
57500
+ gtlt = "";
57501
+ }
57502
+ pr2 = options.includePrerelease ? "-0" : "";
57503
+ if (xM) {
57504
+ if (gtlt === ">" || gtlt === "<") {
57505
+ ret = "<0.0.0-0";
57506
+ } else {
57507
+ ret = "*";
57508
+ }
57509
+ } else if (gtlt && anyX) {
57510
+ if (xm) {
57511
+ m = 0;
57512
+ }
57513
+ p = 0;
57514
+ if (gtlt === ">") {
57515
+ gtlt = ">=";
57516
+ if (xm) {
57517
+ M = +M + 1;
57518
+ m = 0;
57519
+ p = 0;
57520
+ } else {
57521
+ m = +m + 1;
57522
+ p = 0;
57523
+ }
57524
+ } else if (gtlt === "<=") {
57525
+ gtlt = "<";
57526
+ if (xm) {
57527
+ M = +M + 1;
57528
+ } else {
57529
+ m = +m + 1;
57530
+ }
57531
+ }
57532
+ if (gtlt === "<") {
57533
+ pr2 = "-0";
57534
+ }
57535
+ ret = `${gtlt + M}.${m}.${p}${pr2}`;
57536
+ } else if (xm) {
57537
+ ret = `>=${M}.0.0${pr2} <${+M + 1}.0.0-0`;
57538
+ } else if (xp) {
57539
+ ret = `>=${M}.${m}.0${pr2} <${M}.${+m + 1}.0-0`;
57540
+ }
57541
+ debug2("xRange return", ret);
57542
+ return ret;
57543
+ });
57544
+ };
57545
+ var replaceStars = (comp2, options) => {
57546
+ debug2("replaceStars", comp2, options);
57547
+ return comp2.trim().replace(re2[t.STAR], "");
57548
+ };
57549
+ var replaceGTE0 = (comp2, options) => {
57550
+ debug2("replaceGTE0", comp2, options);
57551
+ return comp2.trim().replace(re2[options.includePrerelease ? t.GTE0PRE : t.GTE0], "");
57552
+ };
57553
+ var hyphenReplace = (incPr) => ($0, from, fM, fm, fp, fpr, fb, to, tM, tm, tp, tpr) => {
57554
+ if (isX(fM)) {
57555
+ from = "";
57556
+ } else if (isX(fm)) {
57557
+ from = `>=${fM}.0.0${incPr ? "-0" : ""}`;
57558
+ } else if (isX(fp)) {
57559
+ from = `>=${fM}.${fm}.0${incPr ? "-0" : ""}`;
57560
+ } else if (fpr) {
57561
+ from = `>=${from}`;
57562
+ } else {
57563
+ from = `>=${from}${incPr ? "-0" : ""}`;
57564
+ }
57565
+ if (isX(tM)) {
57566
+ to = "";
57567
+ } else if (isX(tm)) {
57568
+ to = `<${+tM + 1}.0.0-0`;
57569
+ } else if (isX(tp)) {
57570
+ to = `<${tM}.${+tm + 1}.0-0`;
57571
+ } else if (tpr) {
57572
+ to = `<=${tM}.${tm}.${tp}-${tpr}`;
57573
+ } else if (incPr) {
57574
+ to = `<${tM}.${tm}.${+tp + 1}-0`;
57575
+ } else {
57576
+ to = `<=${to}`;
57577
+ }
57578
+ return `${from} ${to}`.trim();
57579
+ };
57580
+ var testSet = (set, version2, options) => {
57581
+ for (let i = 0; i < set.length; i++) {
57582
+ if (!set[i].test(version2)) {
57583
+ return false;
57584
+ }
57585
+ }
57586
+ if (version2.prerelease.length && !options.includePrerelease) {
57587
+ for (let i = 0; i < set.length; i++) {
57588
+ debug2(set[i].semver);
57589
+ if (set[i].semver === Comparator.ANY) {
57590
+ continue;
57591
+ }
57592
+ if (set[i].semver.prerelease.length > 0) {
57593
+ const allowed = set[i].semver;
57594
+ if (allowed.major === version2.major && allowed.minor === version2.minor && allowed.patch === version2.patch) {
57595
+ return true;
57596
+ }
57597
+ }
57598
+ }
57599
+ return false;
57600
+ }
57601
+ return true;
57602
+ };
57603
+ }
57604
+ });
57605
+
57606
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/classes/comparator.js
57607
+ var require_comparator2 = __commonJS({
57608
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/classes/comparator.js"(exports, module) {
57609
+ init_esm_shims();
57610
+ var __import____internal_parseOptions = __toESM(require_parse_options2());
57611
+ var __import____internal_re = __toESM(require_re2());
57612
+ var __import____functions_cmp = __toESM(require_cmp2());
57613
+ var __import____internal_debug = __toESM(require_debug3());
57614
+ var __import___semver = __toESM(require_semver3());
57615
+ var __import___range = __toESM(require_range3());
57616
+ var ANY = Symbol("SemVer ANY");
57617
+ var Comparator = class _Comparator {
57618
+ static get ANY() {
57619
+ return ANY;
57620
+ }
57621
+ constructor(comp2, options) {
57622
+ options = parseOptions(options);
57623
+ if (comp2 instanceof _Comparator) {
57624
+ if (comp2.loose === !!options.loose) {
57625
+ return comp2;
57626
+ } else {
57627
+ comp2 = comp2.value;
57628
+ }
57629
+ }
57630
+ comp2 = comp2.trim().split(/\s+/).join(" ");
57631
+ debug2("comparator", comp2, options);
57632
+ this.options = options;
57633
+ this.loose = !!options.loose;
57634
+ this.parse(comp2);
57635
+ if (this.semver === ANY) {
57636
+ this.value = "";
57637
+ } else {
57638
+ this.value = this.operator + this.semver.version;
57639
+ }
57640
+ debug2("comp", this);
57641
+ }
57642
+ parse(comp2) {
57643
+ const r = this.options.loose ? re2[t.COMPARATORLOOSE] : re2[t.COMPARATOR];
57644
+ const m = comp2.match(r);
57645
+ if (!m) {
57646
+ throw new TypeError(`Invalid comparator: ${comp2}`);
57647
+ }
57648
+ this.operator = m[1] !== void 0 ? m[1] : "";
57649
+ if (this.operator === "=") {
57650
+ this.operator = "";
57651
+ }
57652
+ if (!m[2]) {
57653
+ this.semver = ANY;
57654
+ } else {
57655
+ this.semver = new SemVer(m[2], this.options.loose);
57656
+ }
57657
+ }
57658
+ toString() {
57659
+ return this.value;
57660
+ }
57661
+ test(version2) {
57662
+ debug2("Comparator.test", version2, this.options.loose);
57663
+ if (this.semver === ANY || version2 === ANY) {
57664
+ return true;
57665
+ }
57666
+ if (typeof version2 === "string") {
57667
+ try {
57668
+ version2 = new SemVer(version2, this.options);
57669
+ } catch (er) {
57670
+ return false;
57671
+ }
57672
+ }
57673
+ return cmp(version2, this.operator, this.semver, this.options);
57674
+ }
57675
+ intersects(comp2, options) {
57676
+ if (!(comp2 instanceof _Comparator)) {
57677
+ throw new TypeError("a Comparator is required");
57678
+ }
57679
+ if (this.operator === "") {
57680
+ if (this.value === "") {
57681
+ return true;
57682
+ }
57683
+ return new Range(comp2.value, options).test(this.value);
57684
+ } else if (comp2.operator === "") {
57685
+ if (comp2.value === "") {
57686
+ return true;
57687
+ }
57688
+ return new Range(this.value, options).test(comp2.semver);
57689
+ }
57690
+ options = parseOptions(options);
57691
+ if (options.includePrerelease && (this.value === "<0.0.0-0" || comp2.value === "<0.0.0-0")) {
57692
+ return false;
57693
+ }
57694
+ if (!options.includePrerelease && (this.value.startsWith("<0.0.0") || comp2.value.startsWith("<0.0.0"))) {
57695
+ return false;
57696
+ }
57697
+ if (this.operator.startsWith(">") && comp2.operator.startsWith(">")) {
57698
+ return true;
57699
+ }
57700
+ if (this.operator.startsWith("<") && comp2.operator.startsWith("<")) {
57701
+ return true;
57702
+ }
57703
+ if (this.semver.version === comp2.semver.version && this.operator.includes("=") && comp2.operator.includes("=")) {
57704
+ return true;
57705
+ }
57706
+ if (cmp(this.semver, "<", comp2.semver, options) && this.operator.startsWith(">") && comp2.operator.startsWith("<")) {
57707
+ return true;
57708
+ }
57709
+ if (cmp(this.semver, ">", comp2.semver, options) && this.operator.startsWith("<") && comp2.operator.startsWith(">")) {
57710
+ return true;
57711
+ }
57712
+ return false;
57713
+ }
57714
+ };
57715
+ module.exports = Comparator;
57716
+ var parseOptions = __import____internal_parseOptions;
57717
+ var { safeRe: re2, t } = __import____internal_re;
57718
+ var cmp = __import____functions_cmp;
57719
+ var debug2 = __import____internal_debug;
57720
+ var SemVer = __import___semver;
57721
+ var Range = __import___range;
57722
+ }
57723
+ });
57724
+
57725
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/satisfies.js
57726
+ var require_satisfies2 = __commonJS({
57727
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/functions/satisfies.js"(exports, module) {
57728
+ init_esm_shims();
57729
+ var __import____classes_range = __toESM(require_range3());
57730
+ var Range = __import____classes_range;
57731
+ var satisfies = (version2, range3, options) => {
57732
+ try {
57733
+ range3 = new Range(range3, options);
57734
+ } catch (er) {
57735
+ return false;
57736
+ }
57737
+ return range3.test(version2);
57738
+ };
57739
+ module.exports = satisfies;
57740
+ }
57741
+ });
57742
+
57743
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/to-comparators.js
57744
+ var require_to_comparators2 = __commonJS({
57745
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/to-comparators.js"(exports, module) {
57746
+ init_esm_shims();
57747
+ var __import____classes_range = __toESM(require_range3());
57748
+ var Range = __import____classes_range;
57749
+ var toComparators = (range3, options) => new Range(range3, options).set.map((comp2) => comp2.map((c) => c.value).join(" ").trim().split(" "));
57750
+ module.exports = toComparators;
57751
+ }
57752
+ });
57753
+
57754
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/max-satisfying.js
57755
+ var require_max_satisfying2 = __commonJS({
57756
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/max-satisfying.js"(exports, module) {
57757
+ init_esm_shims();
57758
+ var __import____classes_semver = __toESM(require_semver3());
57759
+ var __import____classes_range = __toESM(require_range3());
57760
+ var SemVer = __import____classes_semver;
57761
+ var Range = __import____classes_range;
57762
+ var maxSatisfying = (versions, range3, options) => {
57763
+ let max2 = null;
57764
+ let maxSV = null;
57765
+ let rangeObj = null;
57766
+ try {
57767
+ rangeObj = new Range(range3, options);
57768
+ } catch (er) {
57769
+ return null;
57770
+ }
57771
+ versions.forEach((v) => {
57772
+ if (rangeObj.test(v)) {
57773
+ if (!max2 || maxSV.compare(v) === -1) {
57774
+ max2 = v;
57775
+ maxSV = new SemVer(max2, options);
57776
+ }
57777
+ }
57778
+ });
57779
+ return max2;
57780
+ };
57781
+ module.exports = maxSatisfying;
57782
+ }
57783
+ });
57784
+
57785
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/min-satisfying.js
57786
+ var require_min_satisfying2 = __commonJS({
57787
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/min-satisfying.js"(exports, module) {
57788
+ init_esm_shims();
57789
+ var __import____classes_semver = __toESM(require_semver3());
57790
+ var __import____classes_range = __toESM(require_range3());
57791
+ var SemVer = __import____classes_semver;
57792
+ var Range = __import____classes_range;
57793
+ var minSatisfying = (versions, range3, options) => {
57794
+ let min2 = null;
57795
+ let minSV = null;
57796
+ let rangeObj = null;
57797
+ try {
57798
+ rangeObj = new Range(range3, options);
57799
+ } catch (er) {
57800
+ return null;
57801
+ }
57802
+ versions.forEach((v) => {
57803
+ if (rangeObj.test(v)) {
57804
+ if (!min2 || minSV.compare(v) === 1) {
57805
+ min2 = v;
57806
+ minSV = new SemVer(min2, options);
57807
+ }
57808
+ }
57809
+ });
57810
+ return min2;
57811
+ };
57812
+ module.exports = minSatisfying;
57813
+ }
57814
+ });
57815
+
57816
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/min-version.js
57817
+ var require_min_version2 = __commonJS({
57818
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/min-version.js"(exports, module) {
57819
+ init_esm_shims();
57820
+ var __import____classes_semver = __toESM(require_semver3());
57821
+ var __import____classes_range = __toESM(require_range3());
57822
+ var __import____functions_gt = __toESM(require_gt2());
57823
+ var SemVer = __import____classes_semver;
57824
+ var Range = __import____classes_range;
57825
+ var gt2 = __import____functions_gt;
57826
+ var minVersion = (range3, loose) => {
57827
+ range3 = new Range(range3, loose);
57828
+ let minver = new SemVer("0.0.0");
57829
+ if (range3.test(minver)) {
57830
+ return minver;
57831
+ }
57832
+ minver = new SemVer("0.0.0-0");
57833
+ if (range3.test(minver)) {
57834
+ return minver;
57835
+ }
57836
+ minver = null;
57837
+ for (let i = 0; i < range3.set.length; ++i) {
57838
+ const comparators = range3.set[i];
57839
+ let setMin = null;
57840
+ comparators.forEach((comparator) => {
57841
+ const compver = new SemVer(comparator.semver.version);
57842
+ switch (comparator.operator) {
57843
+ case ">":
57844
+ if (compver.prerelease.length === 0) {
57845
+ compver.patch++;
57846
+ } else {
57847
+ compver.prerelease.push(0);
57848
+ }
57849
+ compver.raw = compver.format();
57850
+ /* fallthrough */
57851
+ case "":
57852
+ case ">=":
57853
+ if (!setMin || gt2(compver, setMin)) {
57854
+ setMin = compver;
57855
+ }
57856
+ break;
57857
+ case "<":
57858
+ case "<=":
57859
+ break;
57860
+ /* istanbul ignore next */
57861
+ default:
57862
+ throw new Error(`Unexpected operation: ${comparator.operator}`);
57863
+ }
57864
+ });
57865
+ if (setMin && (!minver || gt2(minver, setMin))) {
57866
+ minver = setMin;
57867
+ }
57868
+ }
57869
+ if (minver && range3.test(minver)) {
57870
+ return minver;
57871
+ }
57872
+ return null;
57873
+ };
57874
+ module.exports = minVersion;
57875
+ }
57876
+ });
57877
+
57878
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/valid.js
57879
+ var require_valid4 = __commonJS({
57880
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/valid.js"(exports, module) {
57881
+ init_esm_shims();
57882
+ var __import____classes_range = __toESM(require_range3());
57883
+ var Range = __import____classes_range;
57884
+ var validRange = (range3, options) => {
57885
+ try {
57886
+ return new Range(range3, options).range || "*";
57887
+ } catch (er) {
57888
+ return null;
57889
+ }
57890
+ };
57891
+ module.exports = validRange;
57892
+ }
57893
+ });
57894
+
57895
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/outside.js
57896
+ var require_outside2 = __commonJS({
57897
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/outside.js"(exports, module) {
57898
+ init_esm_shims();
57899
+ var __import____classes_semver = __toESM(require_semver3());
57900
+ var __import____classes_comparator = __toESM(require_comparator2());
57901
+ var __import____classes_range = __toESM(require_range3());
57902
+ var __import____functions_satisfies = __toESM(require_satisfies2());
57903
+ var __import____functions_gt = __toESM(require_gt2());
57904
+ var __import____functions_lt = __toESM(require_lt2());
57905
+ var __import____functions_lte = __toESM(require_lte2());
57906
+ var __import____functions_gte = __toESM(require_gte2());
57907
+ var SemVer = __import____classes_semver;
57908
+ var Comparator = __import____classes_comparator;
57909
+ var { ANY } = Comparator;
57910
+ var Range = __import____classes_range;
57911
+ var satisfies = __import____functions_satisfies;
57912
+ var gt2 = __import____functions_gt;
57913
+ var lt2 = __import____functions_lt;
57914
+ var lte = __import____functions_lte;
57915
+ var gte = __import____functions_gte;
57916
+ var outside = (version2, range3, hilo, options) => {
57917
+ version2 = new SemVer(version2, options);
57918
+ range3 = new Range(range3, options);
57919
+ let gtfn, ltefn, ltfn, comp2, ecomp;
57920
+ switch (hilo) {
57921
+ case ">":
57922
+ gtfn = gt2;
57923
+ ltefn = lte;
57924
+ ltfn = lt2;
57925
+ comp2 = ">";
57926
+ ecomp = ">=";
57927
+ break;
57928
+ case "<":
57929
+ gtfn = lt2;
57930
+ ltefn = gte;
57931
+ ltfn = gt2;
57932
+ comp2 = "<";
57933
+ ecomp = "<=";
57934
+ break;
57935
+ default:
57936
+ throw new TypeError('Must provide a hilo val of "<" or ">"');
57937
+ }
57938
+ if (satisfies(version2, range3, options)) {
57939
+ return false;
57940
+ }
57941
+ for (let i = 0; i < range3.set.length; ++i) {
57942
+ const comparators = range3.set[i];
57943
+ let high = null;
57944
+ let low = null;
57945
+ comparators.forEach((comparator) => {
57946
+ if (comparator.semver === ANY) {
57947
+ comparator = new Comparator(">=0.0.0");
57948
+ }
57949
+ high = high || comparator;
57950
+ low = low || comparator;
57951
+ if (gtfn(comparator.semver, high.semver, options)) {
57952
+ high = comparator;
57953
+ } else if (ltfn(comparator.semver, low.semver, options)) {
57954
+ low = comparator;
57955
+ }
57956
+ });
57957
+ if (high.operator === comp2 || high.operator === ecomp) {
57958
+ return false;
57959
+ }
57960
+ if ((!low.operator || low.operator === comp2) && ltefn(version2, low.semver)) {
57961
+ return false;
57962
+ } else if (low.operator === ecomp && ltfn(version2, low.semver)) {
57963
+ return false;
57964
+ }
57965
+ }
57966
+ return true;
57967
+ };
57968
+ module.exports = outside;
57969
+ }
57970
+ });
57971
+
57972
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/gtr.js
57973
+ var require_gtr2 = __commonJS({
57974
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/gtr.js"(exports, module) {
57975
+ init_esm_shims();
57976
+ var __import___outside = __toESM(require_outside2());
57977
+ var outside = __import___outside;
57978
+ var gtr = (version2, range3, options) => outside(version2, range3, ">", options);
57979
+ module.exports = gtr;
57980
+ }
57981
+ });
57982
+
57983
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/ltr.js
57984
+ var require_ltr2 = __commonJS({
57985
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/ltr.js"(exports, module) {
57986
+ init_esm_shims();
57987
+ var __import___outside = __toESM(require_outside2());
57988
+ var outside = __import___outside;
57989
+ var ltr = (version2, range3, options) => outside(version2, range3, "<", options);
57990
+ module.exports = ltr;
57991
+ }
57992
+ });
57993
+
57994
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/intersects.js
57995
+ var require_intersects2 = __commonJS({
57996
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/intersects.js"(exports, module) {
57997
+ init_esm_shims();
57998
+ var __import____classes_range = __toESM(require_range3());
57999
+ var Range = __import____classes_range;
58000
+ var intersects = (r1, r2, options) => {
58001
+ r1 = new Range(r1, options);
58002
+ r2 = new Range(r2, options);
58003
+ return r1.intersects(r2, options);
58004
+ };
58005
+ module.exports = intersects;
58006
+ }
58007
+ });
58008
+
58009
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/simplify.js
58010
+ var require_simplify2 = __commonJS({
58011
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/simplify.js"(exports, module) {
58012
+ init_esm_shims();
58013
+ var __import____functions_satisfies_js = __toESM(require_satisfies2());
58014
+ var __import____functions_compare_js = __toESM(require_compare2());
58015
+ var satisfies = __import____functions_satisfies_js;
58016
+ var compare = __import____functions_compare_js;
58017
+ module.exports = (versions, range3, options) => {
58018
+ const set = [];
58019
+ let first2 = null;
58020
+ let prev = null;
58021
+ const v = versions.sort((a, b) => compare(a, b, options));
58022
+ for (const version2 of v) {
58023
+ const included = satisfies(version2, range3, options);
58024
+ if (included) {
58025
+ prev = version2;
58026
+ if (!first2) {
58027
+ first2 = version2;
58028
+ }
58029
+ } else {
58030
+ if (prev) {
58031
+ set.push([first2, prev]);
58032
+ }
58033
+ prev = null;
58034
+ first2 = null;
58035
+ }
58036
+ }
58037
+ if (first2) {
58038
+ set.push([first2, null]);
58039
+ }
58040
+ const ranges = [];
58041
+ for (const [min2, max2] of set) {
58042
+ if (min2 === max2) {
58043
+ ranges.push(min2);
58044
+ } else if (!max2 && min2 === v[0]) {
58045
+ ranges.push("*");
58046
+ } else if (!max2) {
58047
+ ranges.push(`>=${min2}`);
58048
+ } else if (min2 === v[0]) {
58049
+ ranges.push(`<=${max2}`);
58050
+ } else {
58051
+ ranges.push(`${min2} - ${max2}`);
58052
+ }
58053
+ }
58054
+ const simplified = ranges.join(" || ");
58055
+ const original = typeof range3.raw === "string" ? range3.raw : String(range3);
58056
+ return simplified.length < original.length ? simplified : range3;
58057
+ };
58058
+ }
58059
+ });
58060
+
58061
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/subset.js
58062
+ var require_subset2 = __commonJS({
58063
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/ranges/subset.js"(exports, module) {
58064
+ init_esm_shims();
58065
+ var __import____classes_range_js = __toESM(require_range3());
58066
+ var __import____classes_comparator_js = __toESM(require_comparator2());
58067
+ var __import____functions_satisfies_js = __toESM(require_satisfies2());
58068
+ var __import____functions_compare_js = __toESM(require_compare2());
58069
+ var Range = __import____classes_range_js;
58070
+ var Comparator = __import____classes_comparator_js;
58071
+ var { ANY } = Comparator;
58072
+ var satisfies = __import____functions_satisfies_js;
58073
+ var compare = __import____functions_compare_js;
58074
+ var subset2 = (sub2, dom, options = {}) => {
58075
+ if (sub2 === dom) {
58076
+ return true;
58077
+ }
58078
+ sub2 = new Range(sub2, options);
58079
+ dom = new Range(dom, options);
58080
+ let sawNonNull = false;
58081
+ OUTER: for (const simpleSub of sub2.set) {
58082
+ for (const simpleDom of dom.set) {
58083
+ const isSub = simpleSubset(simpleSub, simpleDom, options);
58084
+ sawNonNull = sawNonNull || isSub !== null;
58085
+ if (isSub) {
58086
+ continue OUTER;
58087
+ }
58088
+ }
58089
+ if (sawNonNull) {
58090
+ return false;
58091
+ }
58092
+ }
58093
+ return true;
58094
+ };
58095
+ var minimumVersionWithPreRelease = [new Comparator(">=0.0.0-0")];
58096
+ var minimumVersion = [new Comparator(">=0.0.0")];
58097
+ var simpleSubset = (sub2, dom, options) => {
58098
+ if (sub2 === dom) {
58099
+ return true;
58100
+ }
58101
+ if (sub2.length === 1 && sub2[0].semver === ANY) {
58102
+ if (dom.length === 1 && dom[0].semver === ANY) {
58103
+ return true;
58104
+ } else if (options.includePrerelease) {
58105
+ sub2 = minimumVersionWithPreRelease;
58106
+ } else {
58107
+ sub2 = minimumVersion;
58108
+ }
58109
+ }
58110
+ if (dom.length === 1 && dom[0].semver === ANY) {
58111
+ if (options.includePrerelease) {
58112
+ return true;
58113
+ } else {
58114
+ dom = minimumVersion;
58115
+ }
58116
+ }
58117
+ const eqSet = /* @__PURE__ */ new Set();
58118
+ let gt2, lt2;
58119
+ for (const c of sub2) {
58120
+ if (c.operator === ">" || c.operator === ">=") {
58121
+ gt2 = higherGT(gt2, c, options);
58122
+ } else if (c.operator === "<" || c.operator === "<=") {
58123
+ lt2 = lowerLT(lt2, c, options);
58124
+ } else {
58125
+ eqSet.add(c.semver);
58126
+ }
58127
+ }
58128
+ if (eqSet.size > 1) {
58129
+ return null;
58130
+ }
58131
+ let gtltComp;
58132
+ if (gt2 && lt2) {
58133
+ gtltComp = compare(gt2.semver, lt2.semver, options);
58134
+ if (gtltComp > 0) {
58135
+ return null;
58136
+ } else if (gtltComp === 0 && (gt2.operator !== ">=" || lt2.operator !== "<=")) {
58137
+ return null;
58138
+ }
58139
+ }
58140
+ for (const eq2 of eqSet) {
58141
+ if (gt2 && !satisfies(eq2, String(gt2), options)) {
58142
+ return null;
58143
+ }
58144
+ if (lt2 && !satisfies(eq2, String(lt2), options)) {
58145
+ return null;
58146
+ }
58147
+ for (const c of dom) {
58148
+ if (!satisfies(eq2, String(c), options)) {
58149
+ return false;
58150
+ }
58151
+ }
58152
+ return true;
58153
+ }
58154
+ let higher, lower;
58155
+ let hasDomLT, hasDomGT;
58156
+ let needDomLTPre = lt2 && !options.includePrerelease && lt2.semver.prerelease.length ? lt2.semver : false;
58157
+ let needDomGTPre = gt2 && !options.includePrerelease && gt2.semver.prerelease.length ? gt2.semver : false;
58158
+ if (needDomLTPre && needDomLTPre.prerelease.length === 1 && lt2.operator === "<" && needDomLTPre.prerelease[0] === 0) {
58159
+ needDomLTPre = false;
58160
+ }
58161
+ for (const c of dom) {
58162
+ hasDomGT = hasDomGT || c.operator === ">" || c.operator === ">=";
58163
+ hasDomLT = hasDomLT || c.operator === "<" || c.operator === "<=";
58164
+ if (gt2) {
58165
+ if (needDomGTPre) {
58166
+ if (c.semver.prerelease && c.semver.prerelease.length && c.semver.major === needDomGTPre.major && c.semver.minor === needDomGTPre.minor && c.semver.patch === needDomGTPre.patch) {
58167
+ needDomGTPre = false;
58168
+ }
58169
+ }
58170
+ if (c.operator === ">" || c.operator === ">=") {
58171
+ higher = higherGT(gt2, c, options);
58172
+ if (higher === c && higher !== gt2) {
58173
+ return false;
58174
+ }
58175
+ } else if (gt2.operator === ">=" && !satisfies(gt2.semver, String(c), options)) {
58176
+ return false;
58177
+ }
58178
+ }
58179
+ if (lt2) {
58180
+ if (needDomLTPre) {
58181
+ if (c.semver.prerelease && c.semver.prerelease.length && c.semver.major === needDomLTPre.major && c.semver.minor === needDomLTPre.minor && c.semver.patch === needDomLTPre.patch) {
58182
+ needDomLTPre = false;
58183
+ }
58184
+ }
58185
+ if (c.operator === "<" || c.operator === "<=") {
58186
+ lower = lowerLT(lt2, c, options);
58187
+ if (lower === c && lower !== lt2) {
58188
+ return false;
58189
+ }
58190
+ } else if (lt2.operator === "<=" && !satisfies(lt2.semver, String(c), options)) {
58191
+ return false;
58192
+ }
58193
+ }
58194
+ if (!c.operator && (lt2 || gt2) && gtltComp !== 0) {
58195
+ return false;
58196
+ }
58197
+ }
58198
+ if (gt2 && hasDomLT && !lt2 && gtltComp !== 0) {
58199
+ return false;
58200
+ }
58201
+ if (lt2 && hasDomGT && !gt2 && gtltComp !== 0) {
58202
+ return false;
58203
+ }
58204
+ if (needDomGTPre || needDomLTPre) {
58205
+ return false;
58206
+ }
58207
+ return true;
58208
+ };
58209
+ var higherGT = (a, b, options) => {
58210
+ if (!a) {
58211
+ return b;
58212
+ }
58213
+ const comp2 = compare(a.semver, b.semver, options);
58214
+ return comp2 > 0 ? a : comp2 < 0 ? b : b.operator === ">" && a.operator === ">=" ? b : a;
58215
+ };
58216
+ var lowerLT = (a, b, options) => {
58217
+ if (!a) {
58218
+ return b;
58219
+ }
58220
+ const comp2 = compare(a.semver, b.semver, options);
58221
+ return comp2 < 0 ? a : comp2 > 0 ? b : b.operator === "<" && a.operator === "<=" ? b : a;
58222
+ };
58223
+ module.exports = subset2;
58224
+ }
58225
+ });
58226
+
58227
+ // ../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/index.js
58228
+ var require_semver4 = __commonJS({
58229
+ "../../node_modules/.pnpm/semver@7.7.1/node_modules/semver/index.js"(exports, module) {
58230
+ init_esm_shims();
58231
+ var __import___internal_re = __toESM(require_re2());
58232
+ var __import___internal_constants = __toESM(require_constants2());
58233
+ var __import___classes_semver = __toESM(require_semver3());
58234
+ var __import___internal_identifiers = __toESM(require_identifiers2());
58235
+ var __import___functions_parse = __toESM(require_parse3());
58236
+ var __import___functions_valid = __toESM(require_valid3());
58237
+ var __import___functions_clean = __toESM(require_clean2());
58238
+ var __import___functions_inc = __toESM(require_inc2());
58239
+ var __import___functions_diff = __toESM(require_diff2());
58240
+ var __import___functions_major = __toESM(require_major2());
58241
+ var __import___functions_minor = __toESM(require_minor2());
58242
+ var __import___functions_patch = __toESM(require_patch2());
58243
+ var __import___functions_prerelease = __toESM(require_prerelease2());
58244
+ var __import___functions_compare = __toESM(require_compare2());
58245
+ var __import___functions_rcompare = __toESM(require_rcompare2());
58246
+ var __import___functions_compareLoose = __toESM(require_compare_loose2());
58247
+ var __import___functions_compareBuild = __toESM(require_compare_build2());
58248
+ var __import___functions_sort = __toESM(require_sort3());
58249
+ var __import___functions_rsort = __toESM(require_rsort2());
58250
+ var __import___functions_gt = __toESM(require_gt2());
58251
+ var __import___functions_lt = __toESM(require_lt2());
58252
+ var __import___functions_eq = __toESM(require_eq2());
58253
+ var __import___functions_neq = __toESM(require_neq2());
58254
+ var __import___functions_gte = __toESM(require_gte2());
58255
+ var __import___functions_lte = __toESM(require_lte2());
58256
+ var __import___functions_cmp = __toESM(require_cmp2());
58257
+ var __import___functions_coerce = __toESM(require_coerce2());
58258
+ var __import___classes_comparator = __toESM(require_comparator2());
58259
+ var __import___classes_range = __toESM(require_range3());
58260
+ var __import___functions_satisfies = __toESM(require_satisfies2());
58261
+ var __import___ranges_toComparators = __toESM(require_to_comparators2());
58262
+ var __import___ranges_maxSatisfying = __toESM(require_max_satisfying2());
58263
+ var __import___ranges_minSatisfying = __toESM(require_min_satisfying2());
58264
+ var __import___ranges_minVersion = __toESM(require_min_version2());
58265
+ var __import___ranges_valid = __toESM(require_valid4());
58266
+ var __import___ranges_outside = __toESM(require_outside2());
58267
+ var __import___ranges_gtr = __toESM(require_gtr2());
58268
+ var __import___ranges_ltr = __toESM(require_ltr2());
58269
+ var __import___ranges_intersects = __toESM(require_intersects2());
58270
+ var __import___ranges_simplify = __toESM(require_simplify2());
58271
+ var __import___ranges_subset = __toESM(require_subset2());
58272
+ var internalRe = __import___internal_re;
58273
+ var constants = __import___internal_constants;
58274
+ var SemVer = __import___classes_semver;
58275
+ var identifiers = __import___internal_identifiers;
58276
+ var parse2 = __import___functions_parse;
58277
+ var valid2 = __import___functions_valid;
58278
+ var clean = __import___functions_clean;
58279
+ var inc = __import___functions_inc;
58280
+ var diff = __import___functions_diff;
58281
+ var major2 = __import___functions_major;
58282
+ var minor = __import___functions_minor;
58283
+ var patch = __import___functions_patch;
58284
+ var prerelease = __import___functions_prerelease;
58285
+ var compare = __import___functions_compare;
58286
+ var rcompare = __import___functions_rcompare;
58287
+ var compareLoose = __import___functions_compareLoose;
58288
+ var compareBuild = __import___functions_compareBuild;
58289
+ var sort = __import___functions_sort;
58290
+ var rsort = __import___functions_rsort;
58291
+ var gt2 = __import___functions_gt;
58292
+ var lt2 = __import___functions_lt;
58293
+ var eq2 = __import___functions_eq;
58294
+ var neq = __import___functions_neq;
58295
+ var gte = __import___functions_gte;
58296
+ var lte = __import___functions_lte;
58297
+ var cmp = __import___functions_cmp;
58298
+ var coerce = __import___functions_coerce;
58299
+ var Comparator = __import___classes_comparator;
58300
+ var Range = __import___classes_range;
58301
+ var satisfies = __import___functions_satisfies;
58302
+ var toComparators = __import___ranges_toComparators;
58303
+ var maxSatisfying = __import___ranges_maxSatisfying;
58304
+ var minSatisfying = __import___ranges_minSatisfying;
58305
+ var minVersion = __import___ranges_minVersion;
58306
+ var validRange = __import___ranges_valid;
58307
+ var outside = __import___ranges_outside;
58308
+ var gtr = __import___ranges_gtr;
58309
+ var ltr = __import___ranges_ltr;
58310
+ var intersects = __import___ranges_intersects;
58311
+ var simplifyRange = __import___ranges_simplify;
58312
+ var subset2 = __import___ranges_subset;
58313
+ module.exports = {
58314
+ parse: parse2,
58315
+ valid: valid2,
58316
+ clean,
58317
+ inc,
58318
+ diff,
58319
+ major: major2,
58320
+ minor,
58321
+ patch,
58322
+ prerelease,
58323
+ compare,
58324
+ rcompare,
58325
+ compareLoose,
58326
+ compareBuild,
58327
+ sort,
58328
+ rsort,
58329
+ gt: gt2,
58330
+ lt: lt2,
58331
+ eq: eq2,
58332
+ neq,
58333
+ gte,
58334
+ lte,
58335
+ cmp,
58336
+ coerce,
58337
+ Comparator,
58338
+ Range,
58339
+ satisfies,
58340
+ toComparators,
58341
+ maxSatisfying,
58342
+ minSatisfying,
58343
+ minVersion,
58344
+ validRange,
58345
+ outside,
58346
+ gtr,
58347
+ ltr,
58348
+ intersects,
58349
+ simplifyRange,
58350
+ subset: subset2,
58351
+ SemVer,
58352
+ re: internalRe.re,
58353
+ src: internalRe.src,
58354
+ tokens: internalRe.t,
58355
+ SEMVER_SPEC_VERSION: constants.SEMVER_SPEC_VERSION,
58356
+ RELEASE_TYPES: constants.RELEASE_TYPES,
58357
+ compareIdentifiers: identifiers.compareIdentifiers,
58358
+ rcompareIdentifiers: identifiers.rcompareIdentifiers
58359
+ };
58360
+ }
58361
+ });
58362
+
56336
58363
  // ../../node_modules/.pnpm/@nx+devkit@20.8.0_nx@20.8.0_@swc-node+register@1.10.9_@swc+core@1.7.26_@swc+helpers@0.5_bd20000ef4ff80f47109509163a3e134/node_modules/@nx/devkit/src/tasks/install-packages-task.js
56337
58364
  import * as __import_child_process2 from "child_process";
56338
58365
  import * as __import_path10 from "path";
@@ -56379,7 +58406,7 @@ import * as __import_os2 from "os";
56379
58406
  var require_package_json = __commonJS({
56380
58407
  "../../node_modules/.pnpm/@nx+devkit@20.8.0_nx@20.8.0_@swc-node+register@1.10.9_@swc+core@1.7.26_@swc+helpers@0.5_bd20000ef4ff80f47109509163a3e134/node_modules/@nx/devkit/src/utils/package-json.js"(exports) {
56381
58408
  init_esm_shims();
56382
- var __import_semver = __toESM(require_semver2());
58409
+ var __import_semver = __toESM(require_semver4());
56383
58410
  var __import____tasks_installPackagesTask = __toESM(require_install_packages_task());
56384
58411
  var __import_tmp = __toESM(require_tmp2());
56385
58412
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -62756,7 +64783,7 @@ var require_race = __commonJS({
62756
64783
  });
62757
64784
 
62758
64785
  // ../../node_modules/.pnpm/rxjs@7.8.1/node_modules/rxjs/dist/cjs/internal/observable/range.js
62759
- var require_range3 = __commonJS({
64786
+ var require_range4 = __commonJS({
62760
64787
  "../../node_modules/.pnpm/rxjs@7.8.1/node_modules/rxjs/dist/cjs/internal/observable/range.js"(exports) {
62761
64788
  init_esm_shims();
62762
64789
  var __import____Observable = __toESM(require_Observable());
@@ -66928,7 +68955,7 @@ var require_cjs = __commonJS({
66928
68955
  var __import___internal_observable_pairs = __toESM(require_pairs());
66929
68956
  var __import___internal_observable_partition = __toESM(require_partition());
66930
68957
  var __import___internal_observable_race = __toESM(require_race());
66931
- var __import___internal_observable_range = __toESM(require_range3());
68958
+ var __import___internal_observable_range = __toESM(require_range4());
66932
68959
  var __import___internal_observable_throwError = __toESM(require_throwError());
66933
68960
  var __import___internal_observable_timer = __toESM(require_timer2());
66934
68961
  var __import___internal_observable_using = __toESM(require_using());
@@ -67756,7 +69783,7 @@ var require_convert_nx_executor = __commonJS({
67756
69783
  "../../node_modules/.pnpm/@nx+devkit@20.8.0_nx@20.8.0_@swc-node+register@1.10.9_@swc+core@1.7.26_@swc+helpers@0.5_bd20000ef4ff80f47109509163a3e134/node_modules/@nx/devkit/src/utils/convert-nx-executor.js"(exports) {
67757
69784
  init_esm_shims();
67758
69785
  var __import___packageJson = __toESM(require_package_json());
67759
- var __import_semver = __toESM(require_semver2());
69786
+ var __import_semver = __toESM(require_semver4());
67760
69787
  var __import_rxjs = __toESM(require_cjs());
67761
69788
  Object.defineProperty(exports, "__esModule", { value: true });
67762
69789
  exports.convertNxExecutor = convertNxExecutor;