@wise/wds-codemods 1.0.0-experimental-e09ad51 → 1.0.0-experimental-e9a5987
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.
|
@@ -36,8 +36,8 @@ node_path = __toESM(node_path);
|
|
|
36
36
|
let __inquirer_prompts = require("@inquirer/prompts");
|
|
37
37
|
let node_fs = require("node:fs");
|
|
38
38
|
|
|
39
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
40
|
-
var require_constants = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
39
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/constants.js
|
|
40
|
+
var require_constants = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/constants.js": ((exports, module) => {
|
|
41
41
|
const SEMVER_SPEC_VERSION = "2.0.0";
|
|
42
42
|
const MAX_LENGTH$2 = 256;
|
|
43
43
|
const MAX_SAFE_INTEGER$1 = Number.MAX_SAFE_INTEGER || 9007199254740991;
|
|
@@ -65,15 +65,15 @@ var require_constants = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@
|
|
|
65
65
|
}) });
|
|
66
66
|
|
|
67
67
|
//#endregion
|
|
68
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
69
|
-
var require_debug = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
68
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/debug.js
|
|
69
|
+
var require_debug = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/debug.js": ((exports, module) => {
|
|
70
70
|
const debug$4 = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {};
|
|
71
71
|
module.exports = debug$4;
|
|
72
72
|
}) });
|
|
73
73
|
|
|
74
74
|
//#endregion
|
|
75
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
76
|
-
var require_re = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
75
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/re.js
|
|
76
|
+
var require_re = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/re.js": ((exports, module) => {
|
|
77
77
|
const { MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH, MAX_LENGTH: MAX_LENGTH$1 } = require_constants();
|
|
78
78
|
const debug$3 = require_debug();
|
|
79
79
|
exports = module.exports = {};
|
|
@@ -152,8 +152,8 @@ var require_re = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.3/n
|
|
|
152
152
|
}) });
|
|
153
153
|
|
|
154
154
|
//#endregion
|
|
155
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
156
|
-
var require_parse_options = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
155
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/parse-options.js
|
|
156
|
+
var require_parse_options = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/parse-options.js": ((exports, module) => {
|
|
157
157
|
const looseOption = Object.freeze({ loose: true });
|
|
158
158
|
const emptyOpts = Object.freeze({});
|
|
159
159
|
const parseOptions$3 = (options) => {
|
|
@@ -165,11 +165,10 @@ var require_parse_options = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/sem
|
|
|
165
165
|
}) });
|
|
166
166
|
|
|
167
167
|
//#endregion
|
|
168
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
169
|
-
var require_identifiers = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
168
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/identifiers.js
|
|
169
|
+
var require_identifiers = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/identifiers.js": ((exports, module) => {
|
|
170
170
|
const numeric = /^[0-9]+$/;
|
|
171
171
|
const compareIdentifiers$1 = (a, b) => {
|
|
172
|
-
if (typeof a === "number" && typeof b === "number") return a === b ? 0 : a < b ? -1 : 1;
|
|
173
172
|
const anum = numeric.test(a);
|
|
174
173
|
const bnum = numeric.test(b);
|
|
175
174
|
if (anum && bnum) {
|
|
@@ -186,8 +185,8 @@ var require_identifiers = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semve
|
|
|
186
185
|
}) });
|
|
187
186
|
|
|
188
187
|
//#endregion
|
|
189
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
190
|
-
var require_semver$1 = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
188
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/semver.js
|
|
189
|
+
var require_semver$1 = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/semver.js": ((exports, module) => {
|
|
191
190
|
const debug$2 = require_debug();
|
|
192
191
|
const { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants();
|
|
193
192
|
const { safeRe: re$3, t: t$3 } = require_re();
|
|
@@ -243,13 +242,7 @@ var require_semver$1 = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7
|
|
|
243
242
|
}
|
|
244
243
|
compareMain(other) {
|
|
245
244
|
if (!(other instanceof SemVer$15)) other = new SemVer$15(other, this.options);
|
|
246
|
-
|
|
247
|
-
if (this.major > other.major) return 1;
|
|
248
|
-
if (this.minor < other.minor) return -1;
|
|
249
|
-
if (this.minor > other.minor) return 1;
|
|
250
|
-
if (this.patch < other.patch) return -1;
|
|
251
|
-
if (this.patch > other.patch) return 1;
|
|
252
|
-
return 0;
|
|
245
|
+
return compareIdentifiers(this.major, other.major) || compareIdentifiers(this.minor, other.minor) || compareIdentifiers(this.patch, other.patch);
|
|
253
246
|
}
|
|
254
247
|
comparePre(other) {
|
|
255
248
|
if (!(other instanceof SemVer$15)) other = new SemVer$15(other, this.options);
|
|
@@ -366,8 +359,8 @@ var require_semver$1 = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7
|
|
|
366
359
|
}) });
|
|
367
360
|
|
|
368
361
|
//#endregion
|
|
369
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
370
|
-
var require_parse = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
362
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/parse.js
|
|
363
|
+
var require_parse = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/parse.js": ((exports, module) => {
|
|
371
364
|
const SemVer$14 = require_semver$1();
|
|
372
365
|
const parse$6 = (version, options, throwErrors = false) => {
|
|
373
366
|
if (version instanceof SemVer$14) return version;
|
|
@@ -382,8 +375,8 @@ var require_parse = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
|
382
375
|
}) });
|
|
383
376
|
|
|
384
377
|
//#endregion
|
|
385
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
386
|
-
var require_valid$1 = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
378
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/valid.js
|
|
379
|
+
var require_valid$1 = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/valid.js": ((exports, module) => {
|
|
387
380
|
const parse$5 = require_parse();
|
|
388
381
|
const valid$1 = (version, options) => {
|
|
389
382
|
const v = parse$5(version, options);
|
|
@@ -393,8 +386,8 @@ var require_valid$1 = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.
|
|
|
393
386
|
}) });
|
|
394
387
|
|
|
395
388
|
//#endregion
|
|
396
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
397
|
-
var require_clean = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
389
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/clean.js
|
|
390
|
+
var require_clean = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/clean.js": ((exports, module) => {
|
|
398
391
|
const parse$4 = require_parse();
|
|
399
392
|
const clean$1 = (version, options) => {
|
|
400
393
|
const s = parse$4(version.trim().replace(/^[=v]+/, ""), options);
|
|
@@ -404,8 +397,8 @@ var require_clean = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
|
404
397
|
}) });
|
|
405
398
|
|
|
406
399
|
//#endregion
|
|
407
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
408
|
-
var require_inc = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
400
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/inc.js
|
|
401
|
+
var require_inc = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/inc.js": ((exports, module) => {
|
|
409
402
|
const SemVer$13 = require_semver$1();
|
|
410
403
|
const inc$1 = (version, release, options, identifier, identifierBase) => {
|
|
411
404
|
if (typeof options === "string") {
|
|
@@ -423,8 +416,8 @@ var require_inc = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.3/
|
|
|
423
416
|
}) });
|
|
424
417
|
|
|
425
418
|
//#endregion
|
|
426
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
427
|
-
var require_diff = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
419
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/diff.js
|
|
420
|
+
var require_diff = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/diff.js": ((exports, module) => {
|
|
428
421
|
const parse$3 = require_parse();
|
|
429
422
|
const diff$1 = (version1, version2) => {
|
|
430
423
|
const v1 = parse$3(version1, null, true);
|
|
@@ -452,32 +445,32 @@ var require_diff = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.3
|
|
|
452
445
|
}) });
|
|
453
446
|
|
|
454
447
|
//#endregion
|
|
455
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
456
|
-
var require_major = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
448
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/major.js
|
|
449
|
+
var require_major = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/major.js": ((exports, module) => {
|
|
457
450
|
const SemVer$12 = require_semver$1();
|
|
458
451
|
const major$1 = (a, loose) => new SemVer$12(a, loose).major;
|
|
459
452
|
module.exports = major$1;
|
|
460
453
|
}) });
|
|
461
454
|
|
|
462
455
|
//#endregion
|
|
463
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
464
|
-
var require_minor = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
456
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/minor.js
|
|
457
|
+
var require_minor = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/minor.js": ((exports, module) => {
|
|
465
458
|
const SemVer$11 = require_semver$1();
|
|
466
459
|
const minor$1 = (a, loose) => new SemVer$11(a, loose).minor;
|
|
467
460
|
module.exports = minor$1;
|
|
468
461
|
}) });
|
|
469
462
|
|
|
470
463
|
//#endregion
|
|
471
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
472
|
-
var require_patch = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
464
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/patch.js
|
|
465
|
+
var require_patch = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/patch.js": ((exports, module) => {
|
|
473
466
|
const SemVer$10 = require_semver$1();
|
|
474
467
|
const patch$1 = (a, loose) => new SemVer$10(a, loose).patch;
|
|
475
468
|
module.exports = patch$1;
|
|
476
469
|
}) });
|
|
477
470
|
|
|
478
471
|
//#endregion
|
|
479
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
480
|
-
var require_prerelease = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
472
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/prerelease.js
|
|
473
|
+
var require_prerelease = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/prerelease.js": ((exports, module) => {
|
|
481
474
|
const parse$2 = require_parse();
|
|
482
475
|
const prerelease$1 = (version, options) => {
|
|
483
476
|
const parsed = parse$2(version, options);
|
|
@@ -487,32 +480,32 @@ var require_prerelease = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver
|
|
|
487
480
|
}) });
|
|
488
481
|
|
|
489
482
|
//#endregion
|
|
490
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
491
|
-
var require_compare = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
483
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare.js
|
|
484
|
+
var require_compare = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare.js": ((exports, module) => {
|
|
492
485
|
const SemVer$9 = require_semver$1();
|
|
493
486
|
const compare$11 = (a, b, loose) => new SemVer$9(a, loose).compare(new SemVer$9(b, loose));
|
|
494
487
|
module.exports = compare$11;
|
|
495
488
|
}) });
|
|
496
489
|
|
|
497
490
|
//#endregion
|
|
498
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
499
|
-
var require_rcompare = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
491
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/rcompare.js
|
|
492
|
+
var require_rcompare = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/rcompare.js": ((exports, module) => {
|
|
500
493
|
const compare$10 = require_compare();
|
|
501
494
|
const rcompare$1 = (a, b, loose) => compare$10(b, a, loose);
|
|
502
495
|
module.exports = rcompare$1;
|
|
503
496
|
}) });
|
|
504
497
|
|
|
505
498
|
//#endregion
|
|
506
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
507
|
-
var require_compare_loose = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
499
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare-loose.js
|
|
500
|
+
var require_compare_loose = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare-loose.js": ((exports, module) => {
|
|
508
501
|
const compare$9 = require_compare();
|
|
509
502
|
const compareLoose$1 = (a, b) => compare$9(a, b, true);
|
|
510
503
|
module.exports = compareLoose$1;
|
|
511
504
|
}) });
|
|
512
505
|
|
|
513
506
|
//#endregion
|
|
514
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
515
|
-
var require_compare_build = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
507
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare-build.js
|
|
508
|
+
var require_compare_build = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/compare-build.js": ((exports, module) => {
|
|
516
509
|
const SemVer$8 = require_semver$1();
|
|
517
510
|
const compareBuild$3 = (a, b, loose) => {
|
|
518
511
|
const versionA = new SemVer$8(a, loose);
|
|
@@ -523,72 +516,72 @@ var require_compare_build = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/sem
|
|
|
523
516
|
}) });
|
|
524
517
|
|
|
525
518
|
//#endregion
|
|
526
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
527
|
-
var require_sort = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
519
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/sort.js
|
|
520
|
+
var require_sort = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/sort.js": ((exports, module) => {
|
|
528
521
|
const compareBuild$2 = require_compare_build();
|
|
529
522
|
const sort$1 = (list$1, loose) => list$1.sort((a, b) => compareBuild$2(a, b, loose));
|
|
530
523
|
module.exports = sort$1;
|
|
531
524
|
}) });
|
|
532
525
|
|
|
533
526
|
//#endregion
|
|
534
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
535
|
-
var require_rsort = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
527
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/rsort.js
|
|
528
|
+
var require_rsort = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/rsort.js": ((exports, module) => {
|
|
536
529
|
const compareBuild$1 = require_compare_build();
|
|
537
530
|
const rsort$1 = (list$1, loose) => list$1.sort((a, b) => compareBuild$1(b, a, loose));
|
|
538
531
|
module.exports = rsort$1;
|
|
539
532
|
}) });
|
|
540
533
|
|
|
541
534
|
//#endregion
|
|
542
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
543
|
-
var require_gt = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
535
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/gt.js
|
|
536
|
+
var require_gt = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/gt.js": ((exports, module) => {
|
|
544
537
|
const compare$8 = require_compare();
|
|
545
538
|
const gt$4 = (a, b, loose) => compare$8(a, b, loose) > 0;
|
|
546
539
|
module.exports = gt$4;
|
|
547
540
|
}) });
|
|
548
541
|
|
|
549
542
|
//#endregion
|
|
550
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
551
|
-
var require_lt = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
543
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/lt.js
|
|
544
|
+
var require_lt = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/lt.js": ((exports, module) => {
|
|
552
545
|
const compare$7 = require_compare();
|
|
553
546
|
const lt$3 = (a, b, loose) => compare$7(a, b, loose) < 0;
|
|
554
547
|
module.exports = lt$3;
|
|
555
548
|
}) });
|
|
556
549
|
|
|
557
550
|
//#endregion
|
|
558
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
559
|
-
var require_eq = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
551
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/eq.js
|
|
552
|
+
var require_eq = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/eq.js": ((exports, module) => {
|
|
560
553
|
const compare$6 = require_compare();
|
|
561
554
|
const eq$2 = (a, b, loose) => compare$6(a, b, loose) === 0;
|
|
562
555
|
module.exports = eq$2;
|
|
563
556
|
}) });
|
|
564
557
|
|
|
565
558
|
//#endregion
|
|
566
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
567
|
-
var require_neq = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
559
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/neq.js
|
|
560
|
+
var require_neq = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/neq.js": ((exports, module) => {
|
|
568
561
|
const compare$5 = require_compare();
|
|
569
562
|
const neq$2 = (a, b, loose) => compare$5(a, b, loose) !== 0;
|
|
570
563
|
module.exports = neq$2;
|
|
571
564
|
}) });
|
|
572
565
|
|
|
573
566
|
//#endregion
|
|
574
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
575
|
-
var require_gte = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
567
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/gte.js
|
|
568
|
+
var require_gte = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/gte.js": ((exports, module) => {
|
|
576
569
|
const compare$4 = require_compare();
|
|
577
570
|
const gte$3 = (a, b, loose) => compare$4(a, b, loose) >= 0;
|
|
578
571
|
module.exports = gte$3;
|
|
579
572
|
}) });
|
|
580
573
|
|
|
581
574
|
//#endregion
|
|
582
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
583
|
-
var require_lte = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
575
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/lte.js
|
|
576
|
+
var require_lte = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/lte.js": ((exports, module) => {
|
|
584
577
|
const compare$3 = require_compare();
|
|
585
578
|
const lte$3 = (a, b, loose) => compare$3(a, b, loose) <= 0;
|
|
586
579
|
module.exports = lte$3;
|
|
587
580
|
}) });
|
|
588
581
|
|
|
589
582
|
//#endregion
|
|
590
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
591
|
-
var require_cmp = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
583
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/cmp.js
|
|
584
|
+
var require_cmp = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/cmp.js": ((exports, module) => {
|
|
592
585
|
const eq$1 = require_eq();
|
|
593
586
|
const neq$1 = require_neq();
|
|
594
587
|
const gt$3 = require_gt();
|
|
@@ -620,8 +613,8 @@ var require_cmp = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.3/
|
|
|
620
613
|
}) });
|
|
621
614
|
|
|
622
615
|
//#endregion
|
|
623
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
624
|
-
var require_coerce = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
616
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/coerce.js
|
|
617
|
+
var require_coerce = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/coerce.js": ((exports, module) => {
|
|
625
618
|
const SemVer$7 = require_semver$1();
|
|
626
619
|
const parse$1 = require_parse();
|
|
627
620
|
const { safeRe: re$2, t: t$2 } = require_re();
|
|
@@ -649,8 +642,8 @@ var require_coerce = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7
|
|
|
649
642
|
}) });
|
|
650
643
|
|
|
651
644
|
//#endregion
|
|
652
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
653
|
-
var require_lrucache = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
645
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/lrucache.js
|
|
646
|
+
var require_lrucache = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/internal/lrucache.js": ((exports, module) => {
|
|
654
647
|
var LRUCache = class {
|
|
655
648
|
constructor() {
|
|
656
649
|
this.max = 1e3;
|
|
@@ -683,8 +676,8 @@ var require_lrucache = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7
|
|
|
683
676
|
}) });
|
|
684
677
|
|
|
685
678
|
//#endregion
|
|
686
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
687
|
-
var require_range = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
679
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/range.js
|
|
680
|
+
var require_range = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/range.js": ((exports, module) => {
|
|
688
681
|
const SPACE_CHARACTERS = /\s+/g;
|
|
689
682
|
var Range$11 = class Range$11 {
|
|
690
683
|
constructor(range, options) {
|
|
@@ -813,7 +806,6 @@ var require_range = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
|
813
806
|
return result;
|
|
814
807
|
};
|
|
815
808
|
const parseComparator = (comp, options) => {
|
|
816
|
-
comp = comp.replace(re$1[t$1.BUILD], "");
|
|
817
809
|
debug$1("comp", comp, options);
|
|
818
810
|
comp = replaceCarets(comp, options);
|
|
819
811
|
debug$1("caret", comp);
|
|
@@ -957,8 +949,8 @@ var require_range = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
|
957
949
|
}) });
|
|
958
950
|
|
|
959
951
|
//#endregion
|
|
960
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
961
|
-
var require_comparator = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
952
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/comparator.js
|
|
953
|
+
var require_comparator = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/classes/comparator.js": ((exports, module) => {
|
|
962
954
|
const ANY$2 = Symbol("SemVer ANY");
|
|
963
955
|
var Comparator$3 = class Comparator$3 {
|
|
964
956
|
static get ANY() {
|
|
@@ -1029,8 +1021,8 @@ var require_comparator = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver
|
|
|
1029
1021
|
}) });
|
|
1030
1022
|
|
|
1031
1023
|
//#endregion
|
|
1032
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1033
|
-
var require_satisfies = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1024
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/satisfies.js
|
|
1025
|
+
var require_satisfies = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/functions/satisfies.js": ((exports, module) => {
|
|
1034
1026
|
const Range$9 = require_range();
|
|
1035
1027
|
const satisfies$4 = (version, range, options) => {
|
|
1036
1028
|
try {
|
|
@@ -1044,16 +1036,16 @@ var require_satisfies = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@
|
|
|
1044
1036
|
}) });
|
|
1045
1037
|
|
|
1046
1038
|
//#endregion
|
|
1047
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1048
|
-
var require_to_comparators = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1039
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/to-comparators.js
|
|
1040
|
+
var require_to_comparators = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/to-comparators.js": ((exports, module) => {
|
|
1049
1041
|
const Range$8 = require_range();
|
|
1050
1042
|
const toComparators$1 = (range, options) => new Range$8(range, options).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" "));
|
|
1051
1043
|
module.exports = toComparators$1;
|
|
1052
1044
|
}) });
|
|
1053
1045
|
|
|
1054
1046
|
//#endregion
|
|
1055
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1056
|
-
var require_max_satisfying = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1047
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/max-satisfying.js
|
|
1048
|
+
var require_max_satisfying = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/max-satisfying.js": ((exports, module) => {
|
|
1057
1049
|
const SemVer$4 = require_semver$1();
|
|
1058
1050
|
const Range$7 = require_range();
|
|
1059
1051
|
const maxSatisfying$1 = (versions, range, options) => {
|
|
@@ -1079,8 +1071,8 @@ var require_max_satisfying = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/se
|
|
|
1079
1071
|
}) });
|
|
1080
1072
|
|
|
1081
1073
|
//#endregion
|
|
1082
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1083
|
-
var require_min_satisfying = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1074
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/min-satisfying.js
|
|
1075
|
+
var require_min_satisfying = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/min-satisfying.js": ((exports, module) => {
|
|
1084
1076
|
const SemVer$3 = require_semver$1();
|
|
1085
1077
|
const Range$6 = require_range();
|
|
1086
1078
|
const minSatisfying$1 = (versions, range, options) => {
|
|
@@ -1106,8 +1098,8 @@ var require_min_satisfying = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/se
|
|
|
1106
1098
|
}) });
|
|
1107
1099
|
|
|
1108
1100
|
//#endregion
|
|
1109
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1110
|
-
var require_min_version = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1101
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/min-version.js
|
|
1102
|
+
var require_min_version = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/min-version.js": ((exports, module) => {
|
|
1111
1103
|
const SemVer$2 = require_semver$1();
|
|
1112
1104
|
const Range$5 = require_range();
|
|
1113
1105
|
const gt$2 = require_gt();
|
|
@@ -1146,8 +1138,8 @@ var require_min_version = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semve
|
|
|
1146
1138
|
}) });
|
|
1147
1139
|
|
|
1148
1140
|
//#endregion
|
|
1149
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1150
|
-
var require_valid = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1141
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/valid.js
|
|
1142
|
+
var require_valid = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/valid.js": ((exports, module) => {
|
|
1151
1143
|
const Range$4 = require_range();
|
|
1152
1144
|
const validRange$1 = (range, options) => {
|
|
1153
1145
|
try {
|
|
@@ -1160,8 +1152,8 @@ var require_valid = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
|
1160
1152
|
}) });
|
|
1161
1153
|
|
|
1162
1154
|
//#endregion
|
|
1163
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1164
|
-
var require_outside = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1155
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/outside.js
|
|
1156
|
+
var require_outside = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/outside.js": ((exports, module) => {
|
|
1165
1157
|
const SemVer$1 = require_semver$1();
|
|
1166
1158
|
const Comparator$2 = require_comparator();
|
|
1167
1159
|
const { ANY: ANY$1 } = Comparator$2;
|
|
@@ -1214,24 +1206,24 @@ var require_outside = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.
|
|
|
1214
1206
|
}) });
|
|
1215
1207
|
|
|
1216
1208
|
//#endregion
|
|
1217
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1218
|
-
var require_gtr = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1209
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/gtr.js
|
|
1210
|
+
var require_gtr = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/gtr.js": ((exports, module) => {
|
|
1219
1211
|
const outside$2 = require_outside();
|
|
1220
1212
|
const gtr$1 = (version, range, options) => outside$2(version, range, ">", options);
|
|
1221
1213
|
module.exports = gtr$1;
|
|
1222
1214
|
}) });
|
|
1223
1215
|
|
|
1224
1216
|
//#endregion
|
|
1225
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1226
|
-
var require_ltr = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1217
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/ltr.js
|
|
1218
|
+
var require_ltr = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/ltr.js": ((exports, module) => {
|
|
1227
1219
|
const outside$1 = require_outside();
|
|
1228
1220
|
const ltr$1 = (version, range, options) => outside$1(version, range, "<", options);
|
|
1229
1221
|
module.exports = ltr$1;
|
|
1230
1222
|
}) });
|
|
1231
1223
|
|
|
1232
1224
|
//#endregion
|
|
1233
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1234
|
-
var require_intersects = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1225
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/intersects.js
|
|
1226
|
+
var require_intersects = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/intersects.js": ((exports, module) => {
|
|
1235
1227
|
const Range$2 = require_range();
|
|
1236
1228
|
const intersects$1 = (r1, r2, options) => {
|
|
1237
1229
|
r1 = new Range$2(r1, options);
|
|
@@ -1242,8 +1234,8 @@ var require_intersects = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver
|
|
|
1242
1234
|
}) });
|
|
1243
1235
|
|
|
1244
1236
|
//#endregion
|
|
1245
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1246
|
-
var require_simplify = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1237
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/simplify.js
|
|
1238
|
+
var require_simplify = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/simplify.js": ((exports, module) => {
|
|
1247
1239
|
const satisfies$2 = require_satisfies();
|
|
1248
1240
|
const compare$2 = require_compare();
|
|
1249
1241
|
module.exports = (versions, range, options) => {
|
|
@@ -1273,8 +1265,8 @@ var require_simplify = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7
|
|
|
1273
1265
|
}) });
|
|
1274
1266
|
|
|
1275
1267
|
//#endregion
|
|
1276
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1277
|
-
var require_subset = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1268
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/subset.js
|
|
1269
|
+
var require_subset = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/ranges/subset.js": ((exports, module) => {
|
|
1278
1270
|
const Range$1 = require_range();
|
|
1279
1271
|
const Comparator$1 = require_comparator();
|
|
1280
1272
|
const { ANY } = Comparator$1;
|
|
@@ -1369,8 +1361,8 @@ var require_subset = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7
|
|
|
1369
1361
|
}) });
|
|
1370
1362
|
|
|
1371
1363
|
//#endregion
|
|
1372
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1373
|
-
var require_semver = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
1364
|
+
//#region node_modules/.pnpm/semver@7.7.2/node_modules/semver/index.js
|
|
1365
|
+
var require_semver = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.2/node_modules/semver/index.js": ((exports, module) => {
|
|
1374
1366
|
const internalRe = require_re();
|
|
1375
1367
|
const constants = require_constants();
|
|
1376
1368
|
const SemVer = require_semver$1();
|
|
@@ -2011,4 +2003,4 @@ Object.defineProperty(exports, 'runTransformPrompts', {
|
|
|
2011
2003
|
return runTransformPrompts;
|
|
2012
2004
|
}
|
|
2013
2005
|
});
|
|
2014
|
-
//# sourceMappingURL=helpers-
|
|
2006
|
+
//# sourceMappingURL=helpers-XxYE8Lj5.js.map
|