create-vue 3.0.0-beta.6 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/outfile.cjs +151 -149
  2. package/package.json +16 -14
  3. package/template/base/package.json +4 -5
  4. package/template/base/vite.config.js +3 -1
  5. package/template/code/default/src/App.vue +2 -2
  6. package/template/code/default/src/components/{Welcome.vue → TheWelcome.vue} +0 -0
  7. package/template/code/router/src/App.vue +8 -8
  8. package/template/code/router/src/components/{Welcome.vue → TheWelcome.vue} +0 -0
  9. package/template/code/router/src/router/index.js +5 -5
  10. package/template/code/router/src/views/{About.vue → AboutView.vue} +0 -0
  11. package/template/code/{typescript-router/src/views/Home.vue → router/src/views/HomeView.vue} +2 -2
  12. package/template/code/typescript-default/src/App.vue +2 -2
  13. package/template/code/typescript-default/src/components/HelloWorld.vue +1 -1
  14. package/template/code/typescript-default/src/components/{Welcome.vue → TheWelcome.vue} +0 -0
  15. package/template/code/typescript-router/src/App.vue +8 -8
  16. package/template/code/typescript-router/src/components/HelloWorld.vue +1 -1
  17. package/template/code/typescript-router/src/components/{Welcome.vue → TheWelcome.vue} +0 -0
  18. package/template/code/typescript-router/src/router/index.ts +5 -5
  19. package/template/code/typescript-router/src/views/{About.vue → AboutView.vue} +0 -0
  20. package/template/code/{router/src/views/Home.vue → typescript-router/src/views/HomeView.vue} +2 -2
  21. package/template/config/cypress/package.json +5 -5
  22. package/template/config/jsx/package.json +1 -1
  23. package/template/config/jsx/vite.config.js +3 -1
  24. package/template/config/pinia/package.json +5 -0
  25. package/template/config/pinia/src/stores/counter.js +16 -0
  26. package/template/config/router/package.json +1 -1
  27. package/template/config/typescript/package.json +3 -2
  28. package/template/entry/{vuex → pinia}/src/main.js +2 -2
  29. package/template/entry/{vuex-and-router → router-and-pinia}/src/main.js +3 -3
  30. package/template/code/typescript-router/src/main.ts +0 -9
package/outfile.cjs CHANGED
@@ -317,9 +317,9 @@ var require_kleur = __commonJS({
317
317
  }
318
318
  });
319
319
 
320
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/action.js
320
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/action.js
321
321
  var require_action = __commonJS({
322
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/action.js"(exports, module2) {
322
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/action.js"(exports, module2) {
323
323
  "use strict";
324
324
  module2.exports = (key, isSelect) => {
325
325
  if (key.meta && key.name !== "escape")
@@ -377,12 +377,12 @@ var require_action = __commonJS({
377
377
  }
378
378
  });
379
379
 
380
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/strip.js
380
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/strip.js
381
381
  var require_strip = __commonJS({
382
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/strip.js"(exports, module2) {
382
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/strip.js"(exports, module2) {
383
383
  "use strict";
384
384
  module2.exports = (str) => {
385
- const pattern = ["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[a-zA-Z\\d]*)*)?\\u0007)", "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PRZcf-ntqry=><~]))"].join("|");
385
+ const pattern = ["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)", "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PRZcf-ntqry=><~]))"].join("|");
386
386
  const RGX = new RegExp(pattern, "g");
387
387
  return typeof str === "string" ? str.replace(RGX, "") : str;
388
388
  };
@@ -450,13 +450,13 @@ var require_src = __commonJS({
450
450
  }
451
451
  });
452
452
 
453
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/clear.js
453
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/clear.js
454
454
  var require_clear = __commonJS({
455
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/clear.js"(exports, module2) {
455
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/clear.js"(exports, module2) {
456
456
  "use strict";
457
457
  function _createForOfIteratorHelper(o, allowArrayLike) {
458
- var it;
459
- if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {
458
+ var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
459
+ if (!it) {
460
460
  if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
461
461
  if (it)
462
462
  o = it;
@@ -475,7 +475,7 @@ var require_clear = __commonJS({
475
475
  }
476
476
  var normalCompletion = true, didErr = false, err;
477
477
  return { s: function s() {
478
- it = o[Symbol.iterator]();
478
+ it = it.call(o);
479
479
  }, n: function n() {
480
480
  var step = it.next();
481
481
  normalCompletion = step.done;
@@ -539,9 +539,9 @@ var require_clear = __commonJS({
539
539
  }
540
540
  });
541
541
 
542
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/figures.js
542
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/figures.js
543
543
  var require_figures = __commonJS({
544
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/figures.js"(exports, module2) {
544
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/figures.js"(exports, module2) {
545
545
  "use strict";
546
546
  var main = {
547
547
  arrowUp: "\u2191",
@@ -576,9 +576,9 @@ var require_figures = __commonJS({
576
576
  }
577
577
  });
578
578
 
579
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/style.js
579
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/style.js
580
580
  var require_style = __commonJS({
581
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/style.js"(exports, module2) {
581
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/style.js"(exports, module2) {
582
582
  "use strict";
583
583
  var c = require_kleur();
584
584
  var figures = require_figures();
@@ -621,9 +621,9 @@ var require_style = __commonJS({
621
621
  }
622
622
  });
623
623
 
624
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/lines.js
624
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/lines.js
625
625
  var require_lines = __commonJS({
626
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/lines.js"(exports, module2) {
626
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/lines.js"(exports, module2) {
627
627
  "use strict";
628
628
  var strip = require_strip();
629
629
  module2.exports = function(msg, perLine) {
@@ -635,9 +635,9 @@ var require_lines = __commonJS({
635
635
  }
636
636
  });
637
637
 
638
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/wrap.js
638
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/wrap.js
639
639
  var require_wrap = __commonJS({
640
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/wrap.js"(exports, module2) {
640
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/wrap.js"(exports, module2) {
641
641
  "use strict";
642
642
  module2.exports = (msg, opts = {}) => {
643
643
  const tab = Number.isSafeInteger(parseInt(opts.margin)) ? new Array(parseInt(opts.margin)).fill(" ").join("") : opts.margin || "";
@@ -653,9 +653,9 @@ var require_wrap = __commonJS({
653
653
  }
654
654
  });
655
655
 
656
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/entriesToDisplay.js
656
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/entriesToDisplay.js
657
657
  var require_entriesToDisplay = __commonJS({
658
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/entriesToDisplay.js"(exports, module2) {
658
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/entriesToDisplay.js"(exports, module2) {
659
659
  "use strict";
660
660
  module2.exports = (cursor, total, maxVisible) => {
661
661
  maxVisible = maxVisible || total;
@@ -671,9 +671,9 @@ var require_entriesToDisplay = __commonJS({
671
671
  }
672
672
  });
673
673
 
674
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/index.js
674
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/index.js
675
675
  var require_util = __commonJS({
676
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/util/index.js"(exports, module2) {
676
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/util/index.js"(exports, module2) {
677
677
  "use strict";
678
678
  module2.exports = {
679
679
  action: require_action(),
@@ -688,9 +688,9 @@ var require_util = __commonJS({
688
688
  }
689
689
  });
690
690
 
691
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/prompt.js
691
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/prompt.js
692
692
  var require_prompt = __commonJS({
693
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/prompt.js"(exports, module2) {
693
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/prompt.js"(exports, module2) {
694
694
  "use strict";
695
695
  var readline = require("readline");
696
696
  var _require = require_util();
@@ -756,9 +756,9 @@ var require_prompt = __commonJS({
756
756
  }
757
757
  });
758
758
 
759
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/text.js
759
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/text.js
760
760
  var require_text = __commonJS({
761
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/text.js"(exports, module2) {
761
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/text.js"(exports, module2) {
762
762
  "use strict";
763
763
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
764
764
  try {
@@ -980,9 +980,9 @@ ${i ? " " : figures.pointerSmall} ${color.red().italic(l)}`, ``);
980
980
  }
981
981
  });
982
982
 
983
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/select.js
983
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/select.js
984
984
  var require_select = __commonJS({
985
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/select.js"(exports, module2) {
985
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/select.js"(exports, module2) {
986
986
  "use strict";
987
987
  var color = require_kleur();
988
988
  var Prompt = require_prompt();
@@ -1134,9 +1134,9 @@ var require_select = __commonJS({
1134
1134
  }
1135
1135
  });
1136
1136
 
1137
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/toggle.js
1137
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/toggle.js
1138
1138
  var require_toggle = __commonJS({
1139
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/toggle.js"(exports, module2) {
1139
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/toggle.js"(exports, module2) {
1140
1140
  "use strict";
1141
1141
  var color = require_kleur();
1142
1142
  var Prompt = require_prompt();
@@ -1238,9 +1238,9 @@ var require_toggle = __commonJS({
1238
1238
  }
1239
1239
  });
1240
1240
 
1241
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/datepart.js
1241
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/datepart.js
1242
1242
  var require_datepart = __commonJS({
1243
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/datepart.js"(exports, module2) {
1243
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/datepart.js"(exports, module2) {
1244
1244
  "use strict";
1245
1245
  var DatePart = class {
1246
1246
  constructor({
@@ -1277,9 +1277,9 @@ var require_datepart = __commonJS({
1277
1277
  }
1278
1278
  });
1279
1279
 
1280
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/meridiem.js
1280
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/meridiem.js
1281
1281
  var require_meridiem = __commonJS({
1282
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/meridiem.js"(exports, module2) {
1282
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/meridiem.js"(exports, module2) {
1283
1283
  "use strict";
1284
1284
  var DatePart = require_datepart();
1285
1285
  var Meridiem = class extends DatePart {
@@ -1301,9 +1301,9 @@ var require_meridiem = __commonJS({
1301
1301
  }
1302
1302
  });
1303
1303
 
1304
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/day.js
1304
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/day.js
1305
1305
  var require_day = __commonJS({
1306
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/day.js"(exports, module2) {
1306
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/day.js"(exports, module2) {
1307
1307
  "use strict";
1308
1308
  var DatePart = require_datepart();
1309
1309
  var pos = (n) => {
@@ -1333,9 +1333,9 @@ var require_day = __commonJS({
1333
1333
  }
1334
1334
  });
1335
1335
 
1336
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/hours.js
1336
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/hours.js
1337
1337
  var require_hours = __commonJS({
1338
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/hours.js"(exports, module2) {
1338
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/hours.js"(exports, module2) {
1339
1339
  "use strict";
1340
1340
  var DatePart = require_datepart();
1341
1341
  var Hours = class extends DatePart {
@@ -1362,9 +1362,9 @@ var require_hours = __commonJS({
1362
1362
  }
1363
1363
  });
1364
1364
 
1365
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/milliseconds.js
1365
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/milliseconds.js
1366
1366
  var require_milliseconds = __commonJS({
1367
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/milliseconds.js"(exports, module2) {
1367
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/milliseconds.js"(exports, module2) {
1368
1368
  "use strict";
1369
1369
  var DatePart = require_datepart();
1370
1370
  var Milliseconds = class extends DatePart {
@@ -1388,9 +1388,9 @@ var require_milliseconds = __commonJS({
1388
1388
  }
1389
1389
  });
1390
1390
 
1391
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/minutes.js
1391
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/minutes.js
1392
1392
  var require_minutes = __commonJS({
1393
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/minutes.js"(exports, module2) {
1393
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/minutes.js"(exports, module2) {
1394
1394
  "use strict";
1395
1395
  var DatePart = require_datepart();
1396
1396
  var Minutes = class extends DatePart {
@@ -1415,9 +1415,9 @@ var require_minutes = __commonJS({
1415
1415
  }
1416
1416
  });
1417
1417
 
1418
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/month.js
1418
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/month.js
1419
1419
  var require_month = __commonJS({
1420
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/month.js"(exports, module2) {
1420
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/month.js"(exports, module2) {
1421
1421
  "use strict";
1422
1422
  var DatePart = require_datepart();
1423
1423
  var Month = class extends DatePart {
@@ -1444,9 +1444,9 @@ var require_month = __commonJS({
1444
1444
  }
1445
1445
  });
1446
1446
 
1447
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/seconds.js
1447
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/seconds.js
1448
1448
  var require_seconds = __commonJS({
1449
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/seconds.js"(exports, module2) {
1449
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/seconds.js"(exports, module2) {
1450
1450
  "use strict";
1451
1451
  var DatePart = require_datepart();
1452
1452
  var Seconds = class extends DatePart {
@@ -1471,9 +1471,9 @@ var require_seconds = __commonJS({
1471
1471
  }
1472
1472
  });
1473
1473
 
1474
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/year.js
1474
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/year.js
1475
1475
  var require_year = __commonJS({
1476
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/year.js"(exports, module2) {
1476
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/year.js"(exports, module2) {
1477
1477
  "use strict";
1478
1478
  var DatePart = require_datepart();
1479
1479
  var Year = class extends DatePart {
@@ -1498,9 +1498,9 @@ var require_year = __commonJS({
1498
1498
  }
1499
1499
  });
1500
1500
 
1501
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/index.js
1501
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/index.js
1502
1502
  var require_dateparts = __commonJS({
1503
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/dateparts/index.js"(exports, module2) {
1503
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/dateparts/index.js"(exports, module2) {
1504
1504
  "use strict";
1505
1505
  module2.exports = {
1506
1506
  DatePart: require_datepart(),
@@ -1516,9 +1516,9 @@ var require_dateparts = __commonJS({
1516
1516
  }
1517
1517
  });
1518
1518
 
1519
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/date.js
1519
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/date.js
1520
1520
  var require_date = __commonJS({
1521
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/date.js"(exports, module2) {
1521
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/date.js"(exports, module2) {
1522
1522
  "use strict";
1523
1523
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
1524
1524
  try {
@@ -1742,9 +1742,9 @@ ${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
1742
1742
  }
1743
1743
  });
1744
1744
 
1745
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/number.js
1745
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/number.js
1746
1746
  var require_number = __commonJS({
1747
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/number.js"(exports, module2) {
1747
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/number.js"(exports, module2) {
1748
1748
  "use strict";
1749
1749
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
1750
1750
  try {
@@ -1967,9 +1967,9 @@ ${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
1967
1967
  }
1968
1968
  });
1969
1969
 
1970
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/multiselect.js
1970
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/multiselect.js
1971
1971
  var require_multiselect = __commonJS({
1972
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/multiselect.js"(exports, module2) {
1972
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/multiselect.js"(exports, module2) {
1973
1973
  "use strict";
1974
1974
  var color = require_kleur();
1975
1975
  var _require = require_src();
@@ -2200,9 +2200,9 @@ Instructions:
2200
2200
  }
2201
2201
  });
2202
2202
 
2203
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/autocomplete.js
2203
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/autocomplete.js
2204
2204
  var require_autocomplete = __commonJS({
2205
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/autocomplete.js"(exports, module2) {
2205
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/autocomplete.js"(exports, module2) {
2206
2206
  "use strict";
2207
2207
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
2208
2208
  try {
@@ -2468,9 +2468,9 @@ var require_autocomplete = __commonJS({
2468
2468
  }
2469
2469
  });
2470
2470
 
2471
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/autocompleteMultiselect.js
2471
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/autocompleteMultiselect.js
2472
2472
  var require_autocompleteMultiselect = __commonJS({
2473
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/autocompleteMultiselect.js"(exports, module2) {
2473
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/autocompleteMultiselect.js"(exports, module2) {
2474
2474
  "use strict";
2475
2475
  var color = require_kleur();
2476
2476
  var _require = require_src();
@@ -2632,9 +2632,9 @@ Filtered results for: ${this.inputValue ? this.inputValue : color.gray("Enter so
2632
2632
  }
2633
2633
  });
2634
2634
 
2635
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/confirm.js
2635
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/confirm.js
2636
2636
  var require_confirm = __commonJS({
2637
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/confirm.js"(exports, module2) {
2637
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/confirm.js"(exports, module2) {
2638
2638
  "use strict";
2639
2639
  var color = require_kleur();
2640
2640
  var Prompt = require_prompt();
@@ -2707,9 +2707,9 @@ var require_confirm = __commonJS({
2707
2707
  }
2708
2708
  });
2709
2709
 
2710
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/index.js
2710
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/index.js
2711
2711
  var require_elements = __commonJS({
2712
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/elements/index.js"(exports, module2) {
2712
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/elements/index.js"(exports, module2) {
2713
2713
  "use strict";
2714
2714
  module2.exports = {
2715
2715
  TextPrompt: require_text(),
@@ -2725,9 +2725,9 @@ var require_elements = __commonJS({
2725
2725
  }
2726
2726
  });
2727
2727
 
2728
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/prompts.js
2728
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/prompts.js
2729
2729
  var require_prompts = __commonJS({
2730
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/prompts.js"(exports) {
2730
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/prompts.js"(exports) {
2731
2731
  "use strict";
2732
2732
  var $ = exports;
2733
2733
  var el = require_elements();
@@ -2789,18 +2789,19 @@ var require_prompts = __commonJS({
2789
2789
  }
2790
2790
  });
2791
2791
 
2792
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/index.js
2792
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/index.js
2793
2793
  var require_dist = __commonJS({
2794
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/dist/index.js"(exports, module2) {
2794
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/dist/index.js"(exports, module2) {
2795
2795
  "use strict";
2796
2796
  function ownKeys(object, enumerableOnly) {
2797
2797
  var keys = Object.keys(object);
2798
2798
  if (Object.getOwnPropertySymbols) {
2799
2799
  var symbols = Object.getOwnPropertySymbols(object);
2800
- if (enumerableOnly)
2800
+ if (enumerableOnly) {
2801
2801
  symbols = symbols.filter(function(sym) {
2802
2802
  return Object.getOwnPropertyDescriptor(object, sym).enumerable;
2803
2803
  });
2804
+ }
2804
2805
  keys.push.apply(keys, symbols);
2805
2806
  }
2806
2807
  return keys;
@@ -2831,8 +2832,8 @@ var require_dist = __commonJS({
2831
2832
  return obj;
2832
2833
  }
2833
2834
  function _createForOfIteratorHelper(o, allowArrayLike) {
2834
- var it;
2835
- if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) {
2835
+ var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"];
2836
+ if (!it) {
2836
2837
  if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") {
2837
2838
  if (it)
2838
2839
  o = it;
@@ -2851,7 +2852,7 @@ var require_dist = __commonJS({
2851
2852
  }
2852
2853
  var normalCompletion = true, didErr = false, err;
2853
2854
  return { s: function s() {
2854
- it = o[Symbol.iterator]();
2855
+ it = it.call(o);
2855
2856
  }, n: function n() {
2856
2857
  var step = it.next();
2857
2858
  normalCompletion = step.done;
@@ -3022,9 +3023,9 @@ var require_dist = __commonJS({
3022
3023
  }
3023
3024
  });
3024
3025
 
3025
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/action.js
3026
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/action.js
3026
3027
  var require_action2 = __commonJS({
3027
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/action.js"(exports, module2) {
3028
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/action.js"(exports, module2) {
3028
3029
  "use strict";
3029
3030
  module2.exports = (key, isSelect) => {
3030
3031
  if (key.meta && key.name !== "escape")
@@ -3082,13 +3083,13 @@ var require_action2 = __commonJS({
3082
3083
  }
3083
3084
  });
3084
3085
 
3085
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/strip.js
3086
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/strip.js
3086
3087
  var require_strip2 = __commonJS({
3087
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/strip.js"(exports, module2) {
3088
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/strip.js"(exports, module2) {
3088
3089
  "use strict";
3089
3090
  module2.exports = (str) => {
3090
3091
  const pattern = [
3091
- "[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[a-zA-Z\\d]*)*)?\\u0007)",
3092
+ "[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)",
3092
3093
  "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PRZcf-ntqry=><~]))"
3093
3094
  ].join("|");
3094
3095
  const RGX = new RegExp(pattern, "g");
@@ -3097,9 +3098,9 @@ var require_strip2 = __commonJS({
3097
3098
  }
3098
3099
  });
3099
3100
 
3100
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/clear.js
3101
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/clear.js
3101
3102
  var require_clear2 = __commonJS({
3102
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/clear.js"(exports, module2) {
3103
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/clear.js"(exports, module2) {
3103
3104
  "use strict";
3104
3105
  var strip = require_strip2();
3105
3106
  var { erase, cursor } = require_src();
@@ -3117,9 +3118,9 @@ var require_clear2 = __commonJS({
3117
3118
  }
3118
3119
  });
3119
3120
 
3120
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/figures.js
3121
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/figures.js
3121
3122
  var require_figures2 = __commonJS({
3122
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/figures.js"(exports, module2) {
3123
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/figures.js"(exports, module2) {
3123
3124
  "use strict";
3124
3125
  var main = {
3125
3126
  arrowUp: "\u2191",
@@ -3154,9 +3155,9 @@ var require_figures2 = __commonJS({
3154
3155
  }
3155
3156
  });
3156
3157
 
3157
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/style.js
3158
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/style.js
3158
3159
  var require_style2 = __commonJS({
3159
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/style.js"(exports, module2) {
3160
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/style.js"(exports, module2) {
3160
3161
  "use strict";
3161
3162
  var c = require_kleur();
3162
3163
  var figures = require_figures2();
@@ -3187,9 +3188,9 @@ var require_style2 = __commonJS({
3187
3188
  }
3188
3189
  });
3189
3190
 
3190
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/lines.js
3191
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/lines.js
3191
3192
  var require_lines2 = __commonJS({
3192
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/lines.js"(exports, module2) {
3193
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/lines.js"(exports, module2) {
3193
3194
  "use strict";
3194
3195
  var strip = require_strip2();
3195
3196
  module2.exports = function(msg, perLine) {
@@ -3201,9 +3202,9 @@ var require_lines2 = __commonJS({
3201
3202
  }
3202
3203
  });
3203
3204
 
3204
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/wrap.js
3205
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/wrap.js
3205
3206
  var require_wrap2 = __commonJS({
3206
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/wrap.js"(exports, module2) {
3207
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/wrap.js"(exports, module2) {
3207
3208
  "use strict";
3208
3209
  module2.exports = (msg, opts = {}) => {
3209
3210
  const tab = Number.isSafeInteger(parseInt(opts.margin)) ? new Array(parseInt(opts.margin)).fill(" ").join("") : opts.margin || "";
@@ -3219,9 +3220,9 @@ var require_wrap2 = __commonJS({
3219
3220
  }
3220
3221
  });
3221
3222
 
3222
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/entriesToDisplay.js
3223
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/entriesToDisplay.js
3223
3224
  var require_entriesToDisplay2 = __commonJS({
3224
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/entriesToDisplay.js"(exports, module2) {
3225
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/entriesToDisplay.js"(exports, module2) {
3225
3226
  "use strict";
3226
3227
  module2.exports = (cursor, total, maxVisible) => {
3227
3228
  maxVisible = maxVisible || total;
@@ -3234,9 +3235,9 @@ var require_entriesToDisplay2 = __commonJS({
3234
3235
  }
3235
3236
  });
3236
3237
 
3237
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/index.js
3238
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/index.js
3238
3239
  var require_util2 = __commonJS({
3239
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/util/index.js"(exports, module2) {
3240
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/util/index.js"(exports, module2) {
3240
3241
  "use strict";
3241
3242
  module2.exports = {
3242
3243
  action: require_action2(),
@@ -3251,9 +3252,9 @@ var require_util2 = __commonJS({
3251
3252
  }
3252
3253
  });
3253
3254
 
3254
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/prompt.js
3255
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/prompt.js
3255
3256
  var require_prompt2 = __commonJS({
3256
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/prompt.js"(exports, module2) {
3257
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/prompt.js"(exports, module2) {
3257
3258
  "use strict";
3258
3259
  var readline = require("readline");
3259
3260
  var { action } = require_util2();
@@ -3313,9 +3314,9 @@ var require_prompt2 = __commonJS({
3313
3314
  }
3314
3315
  });
3315
3316
 
3316
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/text.js
3317
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/text.js
3317
3318
  var require_text2 = __commonJS({
3318
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/text.js"(exports, module2) {
3319
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/text.js"(exports, module2) {
3319
3320
  var color = require_kleur();
3320
3321
  var Prompt = require_prompt2();
3321
3322
  var { erase, cursor } = require_src();
@@ -3500,9 +3501,9 @@ ${i ? " " : figures.pointerSmall} ${color.red().italic(l)}`, ``);
3500
3501
  }
3501
3502
  });
3502
3503
 
3503
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/select.js
3504
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/select.js
3504
3505
  var require_select2 = __commonJS({
3505
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/select.js"(exports, module2) {
3506
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/select.js"(exports, module2) {
3506
3507
  "use strict";
3507
3508
  var color = require_kleur();
3508
3509
  var Prompt = require_prompt2();
@@ -3647,9 +3648,9 @@ var require_select2 = __commonJS({
3647
3648
  }
3648
3649
  });
3649
3650
 
3650
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/toggle.js
3651
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/toggle.js
3651
3652
  var require_toggle2 = __commonJS({
3652
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/toggle.js"(exports, module2) {
3653
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/toggle.js"(exports, module2) {
3653
3654
  var color = require_kleur();
3654
3655
  var Prompt = require_prompt2();
3655
3656
  var { style, clear } = require_util2();
@@ -3753,9 +3754,9 @@ var require_toggle2 = __commonJS({
3753
3754
  }
3754
3755
  });
3755
3756
 
3756
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/datepart.js
3757
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/datepart.js
3757
3758
  var require_datepart2 = __commonJS({
3758
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/datepart.js"(exports, module2) {
3759
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/datepart.js"(exports, module2) {
3759
3760
  "use strict";
3760
3761
  var DatePart = class {
3761
3762
  constructor({ token, date, parts, locales }) {
@@ -3787,9 +3788,9 @@ var require_datepart2 = __commonJS({
3787
3788
  }
3788
3789
  });
3789
3790
 
3790
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/meridiem.js
3791
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/meridiem.js
3791
3792
  var require_meridiem2 = __commonJS({
3792
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/meridiem.js"(exports, module2) {
3793
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/meridiem.js"(exports, module2) {
3793
3794
  "use strict";
3794
3795
  var DatePart = require_datepart2();
3795
3796
  var Meridiem = class extends DatePart {
@@ -3811,9 +3812,9 @@ var require_meridiem2 = __commonJS({
3811
3812
  }
3812
3813
  });
3813
3814
 
3814
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/day.js
3815
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/day.js
3815
3816
  var require_day2 = __commonJS({
3816
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/day.js"(exports, module2) {
3817
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/day.js"(exports, module2) {
3817
3818
  "use strict";
3818
3819
  var DatePart = require_datepart2();
3819
3820
  var pos = (n) => {
@@ -3843,9 +3844,9 @@ var require_day2 = __commonJS({
3843
3844
  }
3844
3845
  });
3845
3846
 
3846
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/hours.js
3847
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/hours.js
3847
3848
  var require_hours2 = __commonJS({
3848
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/hours.js"(exports, module2) {
3849
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/hours.js"(exports, module2) {
3849
3850
  "use strict";
3850
3851
  var DatePart = require_datepart2();
3851
3852
  var Hours = class extends DatePart {
@@ -3872,9 +3873,9 @@ var require_hours2 = __commonJS({
3872
3873
  }
3873
3874
  });
3874
3875
 
3875
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/milliseconds.js
3876
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/milliseconds.js
3876
3877
  var require_milliseconds2 = __commonJS({
3877
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/milliseconds.js"(exports, module2) {
3878
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/milliseconds.js"(exports, module2) {
3878
3879
  "use strict";
3879
3880
  var DatePart = require_datepart2();
3880
3881
  var Milliseconds = class extends DatePart {
@@ -3898,9 +3899,9 @@ var require_milliseconds2 = __commonJS({
3898
3899
  }
3899
3900
  });
3900
3901
 
3901
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/minutes.js
3902
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/minutes.js
3902
3903
  var require_minutes2 = __commonJS({
3903
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/minutes.js"(exports, module2) {
3904
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/minutes.js"(exports, module2) {
3904
3905
  "use strict";
3905
3906
  var DatePart = require_datepart2();
3906
3907
  var Minutes = class extends DatePart {
@@ -3925,9 +3926,9 @@ var require_minutes2 = __commonJS({
3925
3926
  }
3926
3927
  });
3927
3928
 
3928
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/month.js
3929
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/month.js
3929
3930
  var require_month2 = __commonJS({
3930
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/month.js"(exports, module2) {
3931
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/month.js"(exports, module2) {
3931
3932
  "use strict";
3932
3933
  var DatePart = require_datepart2();
3933
3934
  var Month = class extends DatePart {
@@ -3954,9 +3955,9 @@ var require_month2 = __commonJS({
3954
3955
  }
3955
3956
  });
3956
3957
 
3957
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/seconds.js
3958
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/seconds.js
3958
3959
  var require_seconds2 = __commonJS({
3959
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/seconds.js"(exports, module2) {
3960
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/seconds.js"(exports, module2) {
3960
3961
  "use strict";
3961
3962
  var DatePart = require_datepart2();
3962
3963
  var Seconds = class extends DatePart {
@@ -3981,9 +3982,9 @@ var require_seconds2 = __commonJS({
3981
3982
  }
3982
3983
  });
3983
3984
 
3984
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/year.js
3985
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/year.js
3985
3986
  var require_year2 = __commonJS({
3986
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/year.js"(exports, module2) {
3987
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/year.js"(exports, module2) {
3987
3988
  "use strict";
3988
3989
  var DatePart = require_datepart2();
3989
3990
  var Year = class extends DatePart {
@@ -4008,9 +4009,9 @@ var require_year2 = __commonJS({
4008
4009
  }
4009
4010
  });
4010
4011
 
4011
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/index.js
4012
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/index.js
4012
4013
  var require_dateparts2 = __commonJS({
4013
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/dateparts/index.js"(exports, module2) {
4014
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/dateparts/index.js"(exports, module2) {
4014
4015
  "use strict";
4015
4016
  module2.exports = {
4016
4017
  DatePart: require_datepart2(),
@@ -4026,9 +4027,9 @@ var require_dateparts2 = __commonJS({
4026
4027
  }
4027
4028
  });
4028
4029
 
4029
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/date.js
4030
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/date.js
4030
4031
  var require_date2 = __commonJS({
4031
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/date.js"(exports, module2) {
4032
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/date.js"(exports, module2) {
4032
4033
  "use strict";
4033
4034
  var color = require_kleur();
4034
4035
  var Prompt = require_prompt2();
@@ -4201,9 +4202,9 @@ ${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
4201
4202
  }
4202
4203
  });
4203
4204
 
4204
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/number.js
4205
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/number.js
4205
4206
  var require_number2 = __commonJS({
4206
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/number.js"(exports, module2) {
4207
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/number.js"(exports, module2) {
4207
4208
  var color = require_kleur();
4208
4209
  var Prompt = require_prompt2();
4209
4210
  var { cursor, erase } = require_src();
@@ -4389,9 +4390,9 @@ ${i ? ` ` : figures.pointerSmall} ${color.red().italic(l)}`, ``);
4389
4390
  }
4390
4391
  });
4391
4392
 
4392
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/multiselect.js
4393
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/multiselect.js
4393
4394
  var require_multiselect2 = __commonJS({
4394
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/multiselect.js"(exports, module2) {
4395
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/multiselect.js"(exports, module2) {
4395
4396
  "use strict";
4396
4397
  var color = require_kleur();
4397
4398
  var { cursor } = require_src();
@@ -4615,9 +4616,9 @@ Instructions:
4615
4616
  }
4616
4617
  });
4617
4618
 
4618
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/autocomplete.js
4619
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/autocomplete.js
4619
4620
  var require_autocomplete2 = __commonJS({
4620
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/autocomplete.js"(exports, module2) {
4621
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/autocomplete.js"(exports, module2) {
4621
4622
  "use strict";
4622
4623
  var color = require_kleur();
4623
4624
  var Prompt = require_prompt2();
@@ -4836,9 +4837,9 @@ var require_autocomplete2 = __commonJS({
4836
4837
  }
4837
4838
  });
4838
4839
 
4839
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/autocompleteMultiselect.js
4840
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/autocompleteMultiselect.js
4840
4841
  var require_autocompleteMultiselect2 = __commonJS({
4841
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/autocompleteMultiselect.js"(exports, module2) {
4842
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/autocompleteMultiselect.js"(exports, module2) {
4842
4843
  "use strict";
4843
4844
  var color = require_kleur();
4844
4845
  var { cursor } = require_src();
@@ -5001,9 +5002,9 @@ Filtered results for: ${this.inputValue ? this.inputValue : color.gray("Enter so
5001
5002
  }
5002
5003
  });
5003
5004
 
5004
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/confirm.js
5005
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/confirm.js
5005
5006
  var require_confirm2 = __commonJS({
5006
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/confirm.js"(exports, module2) {
5007
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/confirm.js"(exports, module2) {
5007
5008
  var color = require_kleur();
5008
5009
  var Prompt = require_prompt2();
5009
5010
  var { style, clear } = require_util2();
@@ -5076,9 +5077,9 @@ var require_confirm2 = __commonJS({
5076
5077
  }
5077
5078
  });
5078
5079
 
5079
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/index.js
5080
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/index.js
5080
5081
  var require_elements2 = __commonJS({
5081
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/elements/index.js"(exports, module2) {
5082
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/elements/index.js"(exports, module2) {
5082
5083
  "use strict";
5083
5084
  module2.exports = {
5084
5085
  TextPrompt: require_text2(),
@@ -5094,9 +5095,9 @@ var require_elements2 = __commonJS({
5094
5095
  }
5095
5096
  });
5096
5097
 
5097
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/prompts.js
5098
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/prompts.js
5098
5099
  var require_prompts2 = __commonJS({
5099
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/prompts.js"(exports) {
5100
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/prompts.js"(exports) {
5100
5101
  "use strict";
5101
5102
  var $ = exports;
5102
5103
  var el = require_elements2();
@@ -5158,9 +5159,9 @@ var require_prompts2 = __commonJS({
5158
5159
  }
5159
5160
  });
5160
5161
 
5161
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/index.js
5162
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/index.js
5162
5163
  var require_lib = __commonJS({
5163
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/lib/index.js"(exports, module2) {
5164
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/lib/index.js"(exports, module2) {
5164
5165
  "use strict";
5165
5166
  var prompts2 = require_prompts2();
5166
5167
  var passOn = ["suggest", "format", "onState", "validate", "onRender", "type"];
@@ -5235,9 +5236,9 @@ var require_lib = __commonJS({
5235
5236
  }
5236
5237
  });
5237
5238
 
5238
- // node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/index.js
5239
+ // node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/index.js
5239
5240
  var require_prompts3 = __commonJS({
5240
- "node_modules/.pnpm/prompts@2.4.1/node_modules/prompts/index.js"(exports, module2) {
5241
+ "node_modules/.pnpm/prompts@2.4.2/node_modules/prompts/index.js"(exports, module2) {
5241
5242
  function isNodeLT(tar) {
5242
5243
  tar = (Array.isArray(tar) ? tar : tar.split(".")).map(Number);
5243
5244
  let i = 0, src = process.versions.node.split(".").map(Number);
@@ -5496,6 +5497,7 @@ ${getCommand(packageManager, "test:unit")} # or \`${getCommand(packageManager, "
5496
5497
  ### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
5497
5498
 
5498
5499
  \`\`\`sh
5500
+ ${getCommand(packageManager, "build")}
5499
5501
  ${getCommand(packageManager, "test:e2e")} # or \`${getCommand(packageManager, "test:e2e:ci")}\` for headless testing
5500
5502
  \`\`\`
5501
5503
  `;
@@ -5527,7 +5529,7 @@ async function init() {
5527
5529
  },
5528
5530
  boolean: true
5529
5531
  });
5530
- const isFeatureFlagsUsed = typeof (argv.default || argv.ts || argv.jsx || argv.router || argv.vuex || argv.tests) === "boolean";
5532
+ const isFeatureFlagsUsed = typeof (argv.default || argv.ts || argv.jsx || argv.router || argv.pinia || argv.tests) === "boolean";
5531
5533
  let targetDir = argv._[0];
5532
5534
  const defaultProjectName = !targetDir ? "vue-project" : targetDir;
5533
5535
  const forceOverwrite = argv.force;
@@ -5590,9 +5592,9 @@ async function init() {
5590
5592
  inactive: "No"
5591
5593
  },
5592
5594
  {
5593
- name: "needsVuex",
5595
+ name: "needsPinia",
5594
5596
  type: () => isFeatureFlagsUsed ? null : "toggle",
5595
- message: "Add Vuex for state management?",
5597
+ message: "Add Pinia for state management?",
5596
5598
  initial: false,
5597
5599
  active: "Yes",
5598
5600
  inactive: "No"
@@ -5620,7 +5622,7 @@ async function init() {
5620
5622
  needsJsx = argv.jsx,
5621
5623
  needsTypeScript = argv.typescript,
5622
5624
  needsRouter = argv.router,
5623
- needsVuex = argv.vuex,
5625
+ needsPinia = argv.pinia,
5624
5626
  needsTests = argv.tests
5625
5627
  } = result;
5626
5628
  const root = import_path3.default.join(cwd, targetDir);
@@ -5645,8 +5647,8 @@ Scaffolding project in ${root}...`);
5645
5647
  if (needsRouter) {
5646
5648
  render("config/router");
5647
5649
  }
5648
- if (needsVuex) {
5649
- render("config/vuex");
5650
+ if (needsPinia) {
5651
+ render("config/pinia");
5650
5652
  }
5651
5653
  if (needsTests) {
5652
5654
  render("config/cypress");
@@ -5656,10 +5658,10 @@ Scaffolding project in ${root}...`);
5656
5658
  }
5657
5659
  const codeTemplate = (needsTypeScript ? "typescript-" : "") + (needsRouter ? "router" : "default");
5658
5660
  render(`code/${codeTemplate}`);
5659
- if (needsVuex && needsRouter) {
5660
- render("entry/vuex-and-router");
5661
- } else if (needsVuex) {
5662
- render("entry/vuex");
5661
+ if (needsPinia && needsRouter) {
5662
+ render("entry/router-and-pinia");
5663
+ } else if (needsPinia) {
5664
+ render("entry/pinia");
5663
5665
  } else if (needsRouter) {
5664
5666
  render("entry/router");
5665
5667
  } else {