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