@wise/wds-codemods 0.0.1-experimental-439f242 → 0.0.1-experimental-4d62a8a
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.
- package/dist/{helpers-D2tQdrSF.js → helpers-CVZmPIEQ.js} +117 -124
- package/dist/helpers-CVZmPIEQ.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/transforms/button/transformer.js +4 -10
- package/dist/transforms/button/transformer.js.map +1 -1
- package/package.json +9 -9
- package/dist/helpers-D2tQdrSF.js.map +0 -1
|
@@ -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();
|
|
@@ -635,18 +642,14 @@ var require_coerce = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7
|
|
|
635
642
|
}
|
|
636
643
|
if (match === null) return null;
|
|
637
644
|
const major$2 = match[2];
|
|
638
|
-
|
|
639
|
-
const patch$2 = match[4] || "0";
|
|
640
|
-
const prerelease$2 = options.includePrerelease && match[5] ? `-${match[5]}` : "";
|
|
641
|
-
const build = options.includePrerelease && match[6] ? `+${match[6]}` : "";
|
|
642
|
-
return parse$1(`${major$2}.${minor$2}.${patch$2}${prerelease$2}${build}`, options);
|
|
645
|
+
return parse$1(`${major$2}.${match[3] || "0"}.${match[4] || "0"}${options.includePrerelease && match[5] ? `-${match[5]}` : ""}${options.includePrerelease && match[6] ? `+${match[6]}` : ""}`, options);
|
|
643
646
|
};
|
|
644
647
|
module.exports = coerce$1;
|
|
645
648
|
}) });
|
|
646
649
|
|
|
647
650
|
//#endregion
|
|
648
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
649
|
-
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) => {
|
|
650
653
|
var LRUCache = class {
|
|
651
654
|
constructor() {
|
|
652
655
|
this.max = 1e3;
|
|
@@ -679,8 +682,8 @@ var require_lrucache = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7
|
|
|
679
682
|
}) });
|
|
680
683
|
|
|
681
684
|
//#endregion
|
|
682
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
683
|
-
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) => {
|
|
684
687
|
const SPACE_CHARACTERS = /\s+/g;
|
|
685
688
|
var Range$11 = class Range$11 {
|
|
686
689
|
constructor(range, options) {
|
|
@@ -809,6 +812,7 @@ var require_range = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
|
809
812
|
return result;
|
|
810
813
|
};
|
|
811
814
|
const parseComparator = (comp, options) => {
|
|
815
|
+
comp = comp.replace(re$1[t$1.BUILD], "");
|
|
812
816
|
debug$1("comp", comp, options);
|
|
813
817
|
comp = replaceCarets(comp, options);
|
|
814
818
|
debug$1("caret", comp);
|
|
@@ -952,8 +956,8 @@ var require_range = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
|
952
956
|
}) });
|
|
953
957
|
|
|
954
958
|
//#endregion
|
|
955
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
956
|
-
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) => {
|
|
957
961
|
const ANY$2 = Symbol("SemVer ANY");
|
|
958
962
|
var Comparator$3 = class Comparator$3 {
|
|
959
963
|
static get ANY() {
|
|
@@ -1024,8 +1028,8 @@ var require_comparator = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver
|
|
|
1024
1028
|
}) });
|
|
1025
1029
|
|
|
1026
1030
|
//#endregion
|
|
1027
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1028
|
-
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) => {
|
|
1029
1033
|
const Range$9 = require_range();
|
|
1030
1034
|
const satisfies$4 = (version, range, options) => {
|
|
1031
1035
|
try {
|
|
@@ -1039,16 +1043,16 @@ var require_satisfies = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@
|
|
|
1039
1043
|
}) });
|
|
1040
1044
|
|
|
1041
1045
|
//#endregion
|
|
1042
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1043
|
-
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) => {
|
|
1044
1048
|
const Range$8 = require_range();
|
|
1045
1049
|
const toComparators$1 = (range, options) => new Range$8(range, options).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" "));
|
|
1046
1050
|
module.exports = toComparators$1;
|
|
1047
1051
|
}) });
|
|
1048
1052
|
|
|
1049
1053
|
//#endregion
|
|
1050
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1051
|
-
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) => {
|
|
1052
1056
|
const SemVer$4 = require_semver$1();
|
|
1053
1057
|
const Range$7 = require_range();
|
|
1054
1058
|
const maxSatisfying$1 = (versions, range, options) => {
|
|
@@ -1074,8 +1078,8 @@ var require_max_satisfying = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/se
|
|
|
1074
1078
|
}) });
|
|
1075
1079
|
|
|
1076
1080
|
//#endregion
|
|
1077
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1078
|
-
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) => {
|
|
1079
1083
|
const SemVer$3 = require_semver$1();
|
|
1080
1084
|
const Range$6 = require_range();
|
|
1081
1085
|
const minSatisfying$1 = (versions, range, options) => {
|
|
@@ -1101,8 +1105,8 @@ var require_min_satisfying = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/se
|
|
|
1101
1105
|
}) });
|
|
1102
1106
|
|
|
1103
1107
|
//#endregion
|
|
1104
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1105
|
-
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) => {
|
|
1106
1110
|
const SemVer$2 = require_semver$1();
|
|
1107
1111
|
const Range$5 = require_range();
|
|
1108
1112
|
const gt$2 = require_gt();
|
|
@@ -1141,8 +1145,8 @@ var require_min_version = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semve
|
|
|
1141
1145
|
}) });
|
|
1142
1146
|
|
|
1143
1147
|
//#endregion
|
|
1144
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1145
|
-
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) => {
|
|
1146
1150
|
const Range$4 = require_range();
|
|
1147
1151
|
const validRange$1 = (range, options) => {
|
|
1148
1152
|
try {
|
|
@@ -1155,8 +1159,8 @@ var require_valid = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7.
|
|
|
1155
1159
|
}) });
|
|
1156
1160
|
|
|
1157
1161
|
//#endregion
|
|
1158
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1159
|
-
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) => {
|
|
1160
1164
|
const SemVer$1 = require_semver$1();
|
|
1161
1165
|
const Comparator$2 = require_comparator();
|
|
1162
1166
|
const { ANY: ANY$1 } = Comparator$2;
|
|
@@ -1209,24 +1213,24 @@ var require_outside = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.
|
|
|
1209
1213
|
}) });
|
|
1210
1214
|
|
|
1211
1215
|
//#endregion
|
|
1212
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1213
|
-
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) => {
|
|
1214
1218
|
const outside$2 = require_outside();
|
|
1215
1219
|
const gtr$1 = (version, range, options) => outside$2(version, range, ">", options);
|
|
1216
1220
|
module.exports = gtr$1;
|
|
1217
1221
|
}) });
|
|
1218
1222
|
|
|
1219
1223
|
//#endregion
|
|
1220
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1221
|
-
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) => {
|
|
1222
1226
|
const outside$1 = require_outside();
|
|
1223
1227
|
const ltr$1 = (version, range, options) => outside$1(version, range, "<", options);
|
|
1224
1228
|
module.exports = ltr$1;
|
|
1225
1229
|
}) });
|
|
1226
1230
|
|
|
1227
1231
|
//#endregion
|
|
1228
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1229
|
-
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) => {
|
|
1230
1234
|
const Range$2 = require_range();
|
|
1231
1235
|
const intersects$1 = (r1, r2, options) => {
|
|
1232
1236
|
r1 = new Range$2(r1, options);
|
|
@@ -1237,8 +1241,8 @@ var require_intersects = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver
|
|
|
1237
1241
|
}) });
|
|
1238
1242
|
|
|
1239
1243
|
//#endregion
|
|
1240
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1241
|
-
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) => {
|
|
1242
1246
|
const satisfies$2 = require_satisfies();
|
|
1243
1247
|
const compare$2 = require_compare();
|
|
1244
1248
|
module.exports = (versions, range, options) => {
|
|
@@ -1268,8 +1272,8 @@ var require_simplify = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7
|
|
|
1268
1272
|
}) });
|
|
1269
1273
|
|
|
1270
1274
|
//#endregion
|
|
1271
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1272
|
-
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) => {
|
|
1273
1277
|
const Range$1 = require_range();
|
|
1274
1278
|
const Comparator$1 = require_comparator();
|
|
1275
1279
|
const { ANY } = Comparator$1;
|
|
@@ -1364,8 +1368,8 @@ var require_subset = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/semver@7.7
|
|
|
1364
1368
|
}) });
|
|
1365
1369
|
|
|
1366
1370
|
//#endregion
|
|
1367
|
-
//#region node_modules/.pnpm/semver@7.7.
|
|
1368
|
-
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) => {
|
|
1369
1373
|
const internalRe = require_re();
|
|
1370
1374
|
const constants = require_constants();
|
|
1371
1375
|
const SemVer = require_semver$1();
|
|
@@ -1553,9 +1557,7 @@ const renderTable = (data, indexHeading = "index") => {
|
|
|
1553
1557
|
const endSeparator = `└${firstCellLine}┴${remainingLines.join("┴")}┘`;
|
|
1554
1558
|
const formatRow = (cells) => {
|
|
1555
1559
|
return `│${cells.map((cell, index) => {
|
|
1556
|
-
const
|
|
1557
|
-
const displayWidth = getDisplayWidth(cell);
|
|
1558
|
-
const padding = width - displayWidth;
|
|
1560
|
+
const padding = columnWidths[index] - getDisplayWidth(cell);
|
|
1559
1561
|
return ` ${cell}${" ".repeat(Math.max(0, padding))} `;
|
|
1560
1562
|
}).join("│")}│`;
|
|
1561
1563
|
};
|
|
@@ -1598,8 +1600,7 @@ function getVersionFromNodeModules(packagePath, packageName) {
|
|
|
1598
1600
|
function findClosestPackageJson(currentPath) {
|
|
1599
1601
|
const resolvedPath = (0, node_path.resolve)(currentPath);
|
|
1600
1602
|
const projectRoot = findProjectRoot();
|
|
1601
|
-
|
|
1602
|
-
if ((0, node_fs.existsSync)(packageJsonPath)) return resolvedPath;
|
|
1603
|
+
if ((0, node_fs.existsSync)((0, node_path.join)(resolvedPath, "package.json"))) return resolvedPath;
|
|
1603
1604
|
if (projectRoot && resolvedPath === projectRoot) return null;
|
|
1604
1605
|
const parentPath = (0, node_path.dirname)(resolvedPath);
|
|
1605
1606
|
if (parentPath === resolvedPath) return null;
|
|
@@ -1721,8 +1722,7 @@ const queryPackages = async (packages) => {
|
|
|
1721
1722
|
const customPath = await (0, __inquirer_prompts.search)({
|
|
1722
1723
|
message: "Enter the folder path (relative to project root):",
|
|
1723
1724
|
source: async (searchInput) => {
|
|
1724
|
-
|
|
1725
|
-
return getDirectoryChoices(rootPath, searchInput || "").map((choice) => ({
|
|
1725
|
+
return getDirectoryChoices(process.cwd(), searchInput || "").map((choice) => ({
|
|
1726
1726
|
name: choice === "." ? ". (entire project)" : choice,
|
|
1727
1727
|
value: choice,
|
|
1728
1728
|
description: choice === "." ? "Target the entire project" : `Target ${choice} directory`
|
|
@@ -1851,27 +1851,20 @@ const determineGitIgnore = async (args) => {
|
|
|
1851
1851
|
async function getOptions({ transformFiles, packages, root, preselectedTransformFile }) {
|
|
1852
1852
|
const args = process.argv.slice(2);
|
|
1853
1853
|
if (preselectedTransformFile && args[0] === preselectedTransformFile) args.shift();
|
|
1854
|
-
const transformFile = preselectedTransformFile || await determineTransformer({
|
|
1855
|
-
candidate: args[0] ?? "",
|
|
1856
|
-
transformFiles
|
|
1857
|
-
});
|
|
1858
|
-
const pathCandidate = preselectedTransformFile ? args[0] ?? "" : args[1] ?? "";
|
|
1859
|
-
const targetPaths = await determinePaths({
|
|
1860
|
-
candidate: pathCandidate,
|
|
1861
|
-
root,
|
|
1862
|
-
packages
|
|
1863
|
-
});
|
|
1864
|
-
const isDry = await determineIsDryMode(args);
|
|
1865
|
-
const isPrint = await determineIsPrint(args);
|
|
1866
|
-
const ignorePatterns = await determineIgnorePatterns(args);
|
|
1867
|
-
const useGitIgnore = await determineGitIgnore(args);
|
|
1868
1854
|
return {
|
|
1869
|
-
transformFile
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1855
|
+
transformFile: preselectedTransformFile || await determineTransformer({
|
|
1856
|
+
candidate: args[0] ?? "",
|
|
1857
|
+
transformFiles
|
|
1858
|
+
}),
|
|
1859
|
+
targetPaths: await determinePaths({
|
|
1860
|
+
candidate: preselectedTransformFile ? args[0] ?? "" : args[1] ?? "",
|
|
1861
|
+
root,
|
|
1862
|
+
packages
|
|
1863
|
+
}),
|
|
1864
|
+
isDry: await determineIsDryMode(args),
|
|
1865
|
+
isPrint: await determineIsPrint(args),
|
|
1866
|
+
ignorePatterns: await determineIgnorePatterns(args),
|
|
1867
|
+
useGitIgnore: await determineGitIgnore(args)
|
|
1875
1868
|
};
|
|
1876
1869
|
}
|
|
1877
1870
|
var getOptions_default = getOptions;
|
|
@@ -2001,4 +1994,4 @@ Object.defineProperty(exports, 'runTransformPrompts', {
|
|
|
2001
1994
|
return runTransformPrompts;
|
|
2002
1995
|
}
|
|
2003
1996
|
});
|
|
2004
|
-
//# sourceMappingURL=helpers-
|
|
1997
|
+
//# sourceMappingURL=helpers-CVZmPIEQ.js.map
|