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