vite-plugin-vue-devtools 8.0.0 → 8.0.2

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 (32) hide show
  1. package/client/assets/{IconTitle.vue_vue_type_script_setup_true_lang-BXngeGY8.js → IconTitle.vue_vue_type_script_setup_true_lang-B9Nj8PlY.js} +1 -1
  2. package/client/assets/{SectionBlock-H9LBnZtw.js → SectionBlock-BrHcKx8P.js} +1 -1
  3. package/client/assets/assets-tWZ16yre.js +12 -0
  4. package/client/assets/components-EaHI7FxW.js +1 -0
  5. package/client/assets/custom-inspector-tab-view-CZIfhGNk.js +1 -0
  6. package/client/assets/{custom-tab-view-CcB3biR9.js → custom-tab-view-BGjRlmIC.js} +1 -1
  7. package/client/assets/graph-Dvz7NSzX.js +1068 -0
  8. package/client/assets/index-CtdYRAx7.js +2382 -0
  9. package/client/assets/{index-CQrqPx0k.css → index-DkeGUpKU.css} +1 -1
  10. package/client/assets/{index-D_-9VWqF.css → index-ENvNlo7R.css} +1 -1
  11. package/client/assets/overview-CXo9qbzV.js +1 -0
  12. package/client/assets/pages-BLZMWMb9.js +1 -0
  13. package/client/assets/pinia-CsnX6hr4.js +1 -0
  14. package/client/assets/router-BZru8YYb.js +1 -0
  15. package/client/assets/settings-C2YlJymx.js +1 -0
  16. package/client/assets/timeline-B5ZeLLK0.js +1 -0
  17. package/client/index.html +2 -2
  18. package/dist/vite.cjs +277 -313
  19. package/dist/vite.js +257 -303
  20. package/package.json +7 -7
  21. package/src/overlay/devtools-overlay.mjs +4 -4
  22. package/client/assets/assets-qX_YSZFJ.js +0 -12
  23. package/client/assets/components-2Kp8HH9-.js +0 -1
  24. package/client/assets/custom-inspector-tab-view-hJ0sgyRt.js +0 -1
  25. package/client/assets/graph-D2lpQpE1.js +0 -1073
  26. package/client/assets/index-DOp68rd-.js +0 -2382
  27. package/client/assets/overview-C4yihdYP.js +0 -1
  28. package/client/assets/pages-CY6OZ6x-.js +0 -1
  29. package/client/assets/pinia-BDVcd-P5.js +0 -1
  30. package/client/assets/router-DGXO7FD9.js +0 -1
  31. package/client/assets/settings-bsy0UrNY.js +0 -1
  32. package/client/assets/timeline-Rsigp4eg.js +0 -1
package/dist/vite.js CHANGED
@@ -124,9 +124,8 @@ const DIR_CLIENT = resolve(DIR_DIST, "../client");
124
124
 
125
125
  //#endregion
126
126
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/array.js
127
- var require_array = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/array.js"(exports) {
127
+ var require_array = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/array.js": ((exports) => {
128
128
  Object.defineProperty(exports, "__esModule", { value: true });
129
- exports.splitWhen = exports.flatten = void 0;
130
129
  function flatten(items) {
131
130
  return items.reduce((collection, item) => [].concat(collection, item), []);
132
131
  }
@@ -141,24 +140,22 @@ var require_array = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_
141
140
  return result;
142
141
  }
143
142
  exports.splitWhen = splitWhen;
144
- } });
143
+ }) });
145
144
 
146
145
  //#endregion
147
146
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/errno.js
148
- var require_errno = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/errno.js"(exports) {
147
+ var require_errno = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/errno.js": ((exports) => {
149
148
  Object.defineProperty(exports, "__esModule", { value: true });
150
- exports.isEnoentCodeError = void 0;
151
149
  function isEnoentCodeError(error) {
152
150
  return error.code === "ENOENT";
153
151
  }
154
152
  exports.isEnoentCodeError = isEnoentCodeError;
155
- } });
153
+ }) });
156
154
 
157
155
  //#endregion
158
156
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/fs.js
159
- var require_fs$3 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/fs.js"(exports) {
157
+ var require_fs$3 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/fs.js": ((exports) => {
160
158
  Object.defineProperty(exports, "__esModule", { value: true });
161
- exports.createDirentFromStats = void 0;
162
159
  var DirentFromStats$1 = class {
163
160
  constructor(name, stats) {
164
161
  this.name = name;
@@ -175,13 +172,12 @@ var require_fs$3 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_m
175
172
  return new DirentFromStats$1(name, stats);
176
173
  }
177
174
  exports.createDirentFromStats = createDirentFromStats$1;
178
- } });
175
+ }) });
179
176
 
180
177
  //#endregion
181
178
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/path.js
182
- var require_path = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/path.js"(exports) {
179
+ var require_path = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/path.js": ((exports) => {
183
180
  Object.defineProperty(exports, "__esModule", { value: true });
184
- exports.convertPosixPathToPattern = exports.convertWindowsPathToPattern = exports.convertPathToPattern = exports.escapePosixPath = exports.escapeWindowsPath = exports.escape = exports.removeLeadingDotSegment = exports.makeAbsolute = exports.unixify = void 0;
185
181
  const os$1 = __require("os");
186
182
  const path$10 = __require("path");
187
183
  const IS_WINDOWS_PLATFORM = os$1.platform() === "win32";
@@ -241,11 +237,11 @@ var require_path = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_m
241
237
  return escapePosixPath(filepath);
242
238
  }
243
239
  exports.convertPosixPathToPattern = convertPosixPathToPattern;
244
- } });
240
+ }) });
245
241
 
246
242
  //#endregion
247
243
  //#region ../../node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js
248
- var require_is_extglob = __commonJS({ "../../node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js"(exports, module) {
244
+ var require_is_extglob = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/is-extglob@2.1.1/node_modules/is-extglob/index.js": ((exports, module) => {
249
245
  /*!
250
246
  * is-extglob <https://github.com/jonschlinkert/is-extglob>
251
247
  *
@@ -261,11 +257,11 @@ var require_is_extglob = __commonJS({ "../../node_modules/.pnpm/is-extglob@2.1.1
261
257
  }
262
258
  return false;
263
259
  };
264
- } });
260
+ }) });
265
261
 
266
262
  //#endregion
267
263
  //#region ../../node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js
268
- var require_is_glob = __commonJS({ "../../node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js"(exports, module) {
264
+ var require_is_glob = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/is-glob@4.0.3/node_modules/is-glob/index.js": ((exports, module) => {
269
265
  /*!
270
266
  * is-glob <https://github.com/jonschlinkert/is-glob>
271
267
  *
@@ -359,11 +355,11 @@ var require_is_glob = __commonJS({ "../../node_modules/.pnpm/is-glob@4.0.3/node_
359
355
  if (options$1 && options$1.strict === false) check = relaxedCheck;
360
356
  return check(str);
361
357
  };
362
- } });
358
+ }) });
363
359
 
364
360
  //#endregion
365
361
  //#region ../../node_modules/.pnpm/glob-parent@5.1.2/node_modules/glob-parent/index.js
366
- var require_glob_parent = __commonJS({ "../../node_modules/.pnpm/glob-parent@5.1.2/node_modules/glob-parent/index.js"(exports, module) {
362
+ var require_glob_parent = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/glob-parent@5.1.2/node_modules/glob-parent/index.js": ((exports, module) => {
367
363
  var isGlob = require_is_glob();
368
364
  var pathPosixDirname = __require("path").posix.dirname;
369
365
  var isWin32 = __require("os").platform() === "win32";
@@ -379,8 +375,7 @@ var require_glob_parent = __commonJS({ "../../node_modules/.pnpm/glob-parent@5.1
379
375
  * @returns {string}
380
376
  */
381
377
  module.exports = function globParent$1(str, opts) {
382
- var options$1 = Object.assign({ flipBackslashes: true }, opts);
383
- if (options$1.flipBackslashes && isWin32 && str.indexOf(slash) < 0) str = str.replace(backslash, slash);
378
+ if (Object.assign({ flipBackslashes: true }, opts).flipBackslashes && isWin32 && str.indexOf(slash) < 0) str = str.replace(backslash, slash);
384
379
  if (enclosure.test(str)) str += slash;
385
380
  str += "a";
386
381
  do
@@ -388,11 +383,11 @@ var require_glob_parent = __commonJS({ "../../node_modules/.pnpm/glob-parent@5.1
388
383
  while (isGlob(str) || globby.test(str));
389
384
  return str.replace(escaped, "$1");
390
385
  };
391
- } });
386
+ }) });
392
387
 
393
388
  //#endregion
394
389
  //#region ../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/utils.js
395
- var require_utils$3 = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/utils.js"(exports) {
390
+ var require_utils$3 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/utils.js": ((exports) => {
396
391
  exports.isInteger = (num) => {
397
392
  if (typeof num === "number") return Number.isInteger(num);
398
393
  if (typeof num === "string" && num.trim() !== "") return Number.isInteger(Number(num));
@@ -484,11 +479,11 @@ var require_utils$3 = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_m
484
479
  flat(args);
485
480
  return result;
486
481
  };
487
- } });
482
+ }) });
488
483
 
489
484
  //#endregion
490
485
  //#region ../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/stringify.js
491
- var require_stringify = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/stringify.js"(exports, module) {
486
+ var require_stringify = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/stringify.js": ((exports, module) => {
492
487
  const utils$16 = require_utils$3();
493
488
  module.exports = (ast, options$1 = {}) => {
494
489
  const stringify$4 = (node, parent = {}) => {
@@ -505,21 +500,21 @@ var require_stringify = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node
505
500
  };
506
501
  return stringify$4(ast);
507
502
  };
508
- } });
503
+ }) });
509
504
 
510
505
  //#endregion
511
506
  //#region ../../node_modules/.pnpm/is-number@7.0.0/node_modules/is-number/index.js
512
- var require_is_number = __commonJS({ "../../node_modules/.pnpm/is-number@7.0.0/node_modules/is-number/index.js"(exports, module) {
507
+ var require_is_number = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/is-number@7.0.0/node_modules/is-number/index.js": ((exports, module) => {
513
508
  module.exports = function(num) {
514
509
  if (typeof num === "number") return num - num === 0;
515
510
  if (typeof num === "string" && num.trim() !== "") return Number.isFinite ? Number.isFinite(+num) : isFinite(+num);
516
511
  return false;
517
512
  };
518
- } });
513
+ }) });
519
514
 
520
515
  //#endregion
521
516
  //#region ../../node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range/index.js
522
- var require_to_regex_range = __commonJS({ "../../node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range/index.js"(exports, module) {
517
+ var require_to_regex_range = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/to-regex-range@5.0.1/node_modules/to-regex-range/index.js": ((exports, module) => {
523
518
  const isNumber$1 = require_is_number();
524
519
  const toRegexRange$1 = (min, max, options$1) => {
525
520
  if (isNumber$1(min) === false) throw new TypeError("toRegexRange: expected the first argument to be a number");
@@ -558,8 +553,7 @@ var require_to_regex_range = __commonJS({ "../../node_modules/.pnpm/to-regex-ran
558
553
  state.maxLen = String(state.max).length;
559
554
  }
560
555
  if (a < 0) {
561
- let newMin = b < 0 ? Math.abs(b) : 1;
562
- negatives = splitToPatterns(newMin, Math.abs(a), state, opts);
556
+ negatives = splitToPatterns(b < 0 ? Math.abs(b) : 1, Math.abs(a), state, opts);
563
557
  a = state.a = 0;
564
558
  }
565
559
  if (b >= 0) positives = splitToPatterns(a, b, state, opts);
@@ -575,8 +569,7 @@ var require_to_regex_range = __commonJS({ "../../node_modules/.pnpm/to-regex-ran
575
569
  let onlyNegative = filterPatterns(neg, pos, "-", false, options$1) || [];
576
570
  let onlyPositive = filterPatterns(pos, neg, "", false, options$1) || [];
577
571
  let intersected = filterPatterns(neg, pos, "-?", true, options$1) || [];
578
- let subpatterns = onlyNegative.concat(intersected).concat(onlyPositive);
579
- return subpatterns.join("|");
572
+ return onlyNegative.concat(intersected).concat(onlyPositive).join("|");
580
573
  }
581
574
  function splitToRanges(min, max) {
582
575
  let nines = 1;
@@ -711,11 +704,11 @@ var require_to_regex_range = __commonJS({ "../../node_modules/.pnpm/to-regex-ran
711
704
  * Expose `toRegexRange`
712
705
  */
713
706
  module.exports = toRegexRange$1;
714
- } });
707
+ }) });
715
708
 
716
709
  //#endregion
717
710
  //#region ../../node_modules/.pnpm/fill-range@7.1.1/node_modules/fill-range/index.js
718
- var require_fill_range = __commonJS({ "../../node_modules/.pnpm/fill-range@7.1.1/node_modules/fill-range/index.js"(exports, module) {
711
+ var require_fill_range = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fill-range@7.1.1/node_modules/fill-range/index.js": ((exports, module) => {
719
712
  const util$1 = __require("util");
720
713
  const toRegexRange = require_to_regex_range();
721
714
  const isObject$1 = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
@@ -777,8 +770,7 @@ var require_fill_range = __commonJS({ "../../node_modules/.pnpm/fill-range@7.1.1
777
770
  });
778
771
  let start = String.fromCharCode(a);
779
772
  if (a === b) return start;
780
- let stop = String.fromCharCode(b);
781
- return `[${start}-${stop}]`;
773
+ return `[${start}-${String.fromCharCode(b)}]`;
782
774
  };
783
775
  const toRegex = (start, end, options$1) => {
784
776
  if (Array.isArray(start)) {
@@ -875,11 +867,11 @@ var require_fill_range = __commonJS({ "../../node_modules/.pnpm/fill-range@7.1.1
875
867
  return fillLetters(start, end, Math.max(Math.abs(step), 1), opts);
876
868
  };
877
869
  module.exports = fill$2;
878
- } });
870
+ }) });
879
871
 
880
872
  //#endregion
881
873
  //#region ../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/compile.js
882
- var require_compile = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/compile.js"(exports, module) {
874
+ var require_compile = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/compile.js": ((exports, module) => {
883
875
  const fill$1 = require_fill_range();
884
876
  const utils$15 = require_utils$3();
885
877
  const compile$1 = (ast, options$1 = {}) => {
@@ -914,11 +906,11 @@ var require_compile = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_m
914
906
  return walk$1(ast);
915
907
  };
916
908
  module.exports = compile$1;
917
- } });
909
+ }) });
918
910
 
919
911
  //#endregion
920
912
  //#region ../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/expand.js
921
- var require_expand = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/expand.js"(exports, module) {
913
+ var require_expand = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/expand.js": ((exports, module) => {
922
914
  const fill = require_fill_range();
923
915
  const stringify$2 = require_stringify();
924
916
  const utils$14 = require_utils$3();
@@ -991,11 +983,11 @@ var require_expand = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_mo
991
983
  return utils$14.flatten(walk$1(ast));
992
984
  };
993
985
  module.exports = expand$1;
994
- } });
986
+ }) });
995
987
 
996
988
  //#endregion
997
989
  //#region ../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/constants.js
998
- var require_constants$2 = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/constants.js"(exports, module) {
990
+ var require_constants$2 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/constants.js": ((exports, module) => {
999
991
  module.exports = {
1000
992
  MAX_LENGTH: 1e4,
1001
993
  CHAR_0: "0",
@@ -1043,11 +1035,11 @@ var require_constants$2 = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/no
1043
1035
  CHAR_VERTICAL_LINE: "|",
1044
1036
  CHAR_ZERO_WIDTH_NOBREAK_SPACE: ""
1045
1037
  };
1046
- } });
1038
+ }) });
1047
1039
 
1048
1040
  //#endregion
1049
1041
  //#region ../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/parse.js
1050
- var require_parse$1 = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/parse.js"(exports, module) {
1042
+ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/lib/parse.js": ((exports, module) => {
1051
1043
  const stringify$1 = require_stringify();
1052
1044
  /**
1053
1045
  * Constants
@@ -1205,12 +1197,11 @@ var require_parse$1 = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_m
1205
1197
  */
1206
1198
  if (value === CHAR_LEFT_CURLY_BRACE$1) {
1207
1199
  depth$1++;
1208
- const dollar = prev.value && prev.value.slice(-1) === "$" || block.dollar === true;
1209
1200
  const brace = {
1210
1201
  type: "brace",
1211
1202
  open: true,
1212
1203
  close: false,
1213
- dollar,
1204
+ dollar: prev.value && prev.value.slice(-1) === "$" || block.dollar === true,
1214
1205
  depth: depth$1,
1215
1206
  commas: 0,
1216
1207
  ranges: 0,
@@ -1252,8 +1243,7 @@ var require_parse$1 = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_m
1252
1243
  if (value === CHAR_COMMA$1 && depth$1 > 0) {
1253
1244
  if (block.ranges > 0) {
1254
1245
  block.ranges = 0;
1255
- const open = block.nodes.shift();
1256
- block.nodes = [open, {
1246
+ block.nodes = [block.nodes.shift(), {
1257
1247
  type: "text",
1258
1248
  value: stringify$1(block)
1259
1249
  }];
@@ -1333,11 +1323,11 @@ var require_parse$1 = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_m
1333
1323
  return ast;
1334
1324
  };
1335
1325
  module.exports = parse$3;
1336
- } });
1326
+ }) });
1337
1327
 
1338
1328
  //#endregion
1339
1329
  //#region ../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/index.js
1340
- var require_braces = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/index.js"(exports, module) {
1330
+ var require_braces = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_modules/braces/index.js": ((exports, module) => {
1341
1331
  const stringify = require_stringify();
1342
1332
  const compile = require_compile();
1343
1333
  const expand = require_expand();
@@ -1461,11 +1451,11 @@ var require_braces = __commonJS({ "../../node_modules/.pnpm/braces@3.0.3/node_mo
1461
1451
  * Expose "braces"
1462
1452
  */
1463
1453
  module.exports = braces$1;
1464
- } });
1454
+ }) });
1465
1455
 
1466
1456
  //#endregion
1467
1457
  //#region ../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/constants.js
1468
- var require_constants$1 = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/constants.js"(exports, module) {
1458
+ var require_constants$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/constants.js": ((exports, module) => {
1469
1459
  const path$9 = __require("path");
1470
1460
  const WIN_SLASH = "\\\\/";
1471
1461
  const WIN_NO_SLASH = `[^${WIN_SLASH}]`;
@@ -1631,11 +1621,11 @@ var require_constants$1 = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1
1631
1621
  return win32$1 === true ? WINDOWS_CHARS : POSIX_CHARS;
1632
1622
  }
1633
1623
  };
1634
- } });
1624
+ }) });
1635
1625
 
1636
1626
  //#endregion
1637
1627
  //#region ../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/utils.js
1638
- var require_utils$2 = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/utils.js"(exports) {
1628
+ var require_utils$2 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/utils.js": ((exports) => {
1639
1629
  const path$8 = __require("path");
1640
1630
  const win32 = process.platform === "win32";
1641
1631
  const { REGEX_BACKSLASH, REGEX_REMOVE_BACKSLASH, REGEX_SPECIAL_CHARS, REGEX_SPECIAL_CHARS_GLOBAL } = require_constants$1();
@@ -1679,11 +1669,11 @@ var require_utils$2 = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/nod
1679
1669
  if (state.negated === true) output = `(?:^(?!${output}).*$)`;
1680
1670
  return output;
1681
1671
  };
1682
- } });
1672
+ }) });
1683
1673
 
1684
1674
  //#endregion
1685
1675
  //#region ../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/scan.js
1686
- var require_scan = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/scan.js"(exports, module) {
1676
+ var require_scan = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/scan.js": ((exports, module) => {
1687
1677
  const utils$13 = require_utils$2();
1688
1678
  const { CHAR_ASTERISK, CHAR_AT, CHAR_BACKWARD_SLASH, CHAR_COMMA, CHAR_DOT, CHAR_EXCLAMATION_MARK, CHAR_FORWARD_SLASH, CHAR_LEFT_CURLY_BRACE, CHAR_LEFT_PARENTHESES, CHAR_LEFT_SQUARE_BRACKET, CHAR_PLUS, CHAR_QUESTION_MARK, CHAR_RIGHT_CURLY_BRACE, CHAR_RIGHT_PARENTHESES, CHAR_RIGHT_SQUARE_BRACKET } = require_constants$1();
1689
1679
  const isPathSeparator = (code) => {
@@ -1808,8 +1798,7 @@ var require_scan = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_m
1808
1798
  continue;
1809
1799
  }
1810
1800
  if (opts.noext !== true) {
1811
- const isExtglobChar = code === CHAR_PLUS || code === CHAR_AT || code === CHAR_ASTERISK || code === CHAR_QUESTION_MARK || code === CHAR_EXCLAMATION_MARK;
1812
- if (isExtglobChar === true && peek() === CHAR_LEFT_PARENTHESES) {
1801
+ if ((code === CHAR_PLUS || code === CHAR_AT || code === CHAR_ASTERISK || code === CHAR_QUESTION_MARK || code === CHAR_EXCLAMATION_MARK) === true && peek() === CHAR_LEFT_PARENTHESES) {
1813
1802
  isGlob$1 = token.isGlob = true;
1814
1803
  isExtglob$1 = token.isExtglob = true;
1815
1804
  finished = true;
@@ -1968,11 +1957,11 @@ var require_scan = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_m
1968
1957
  return state;
1969
1958
  };
1970
1959
  module.exports = scan$1;
1971
- } });
1960
+ }) });
1972
1961
 
1973
1962
  //#endregion
1974
1963
  //#region ../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/parse.js
1975
- var require_parse = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/parse.js"(exports, module) {
1964
+ var require_parse = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/parse.js": ((exports, module) => {
1976
1965
  const constants$1 = require_constants$1();
1977
1966
  const utils$12 = require_utils$2();
1978
1967
  /**
@@ -2151,13 +2140,10 @@ var require_parse = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_
2151
2140
  let extglobStar = star;
2152
2141
  if (token.inner && token.inner.length > 1 && token.inner.includes("/")) extglobStar = globstar(opts);
2153
2142
  if (extglobStar !== star || eos() || /^\)+$/.test(remaining())) output = token.close = `)$))${extglobStar}`;
2154
- if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
2155
- const expression = parse$1(rest, {
2156
- ...options$1,
2157
- fastpaths: false
2158
- }).output;
2159
- output = token.close = `)${expression})${extglobStar})`;
2160
- }
2143
+ if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) output = token.close = `)${parse$1(rest, {
2144
+ ...options$1,
2145
+ fastpaths: false
2146
+ }).output})${extglobStar})`;
2161
2147
  if (token.prev.type === "bos") state.negatedExtglob = true;
2162
2148
  }
2163
2149
  push({
@@ -2500,8 +2486,7 @@ var require_parse = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_
2500
2486
  * Question marks
2501
2487
  */
2502
2488
  if (value === "?") {
2503
- const isGroup = prev && prev.value === "(";
2504
- if (!isGroup && opts.noextglob !== true && peek() === "(" && peek(2) !== "?") {
2489
+ if (!(prev && prev.value === "(") && opts.noextglob !== true && peek() === "(" && peek(2) !== "?") {
2505
2490
  extglobOpen("qmark", value);
2506
2491
  continue;
2507
2492
  }
@@ -2836,11 +2821,11 @@ var require_parse = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_
2836
2821
  return source;
2837
2822
  };
2838
2823
  module.exports = parse$1;
2839
- } });
2824
+ }) });
2840
2825
 
2841
2826
  //#endregion
2842
2827
  //#region ../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/picomatch.js
2843
- var require_picomatch$1 = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/picomatch.js"(exports, module) {
2828
+ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/lib/picomatch.js": ((exports, module) => {
2844
2829
  const path$7 = __require("path");
2845
2830
  const scan = require_scan();
2846
2831
  const parse = require_parse();
@@ -2980,8 +2965,7 @@ var require_picomatch$1 = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1
2980
2965
  * @api public
2981
2966
  */
2982
2967
  picomatch$1.matchBase = (input, glob, options$1, posix = utils$11.isWindows(options$1)) => {
2983
- const regex = glob instanceof RegExp ? glob : picomatch$1.makeRe(glob, options$1);
2984
- return regex.test(path$7.basename(input));
2968
+ return (glob instanceof RegExp ? glob : picomatch$1.makeRe(glob, options$1)).test(path$7.basename(input));
2985
2969
  };
2986
2970
  /**
2987
2971
  * Returns true if **any** of the given glob `patterns` match the specified `string`.
@@ -3131,17 +3115,17 @@ var require_picomatch$1 = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1
3131
3115
  * Expose "picomatch"
3132
3116
  */
3133
3117
  module.exports = picomatch$1;
3134
- } });
3118
+ }) });
3135
3119
 
3136
3120
  //#endregion
3137
3121
  //#region ../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/index.js
3138
- var require_picomatch = __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/index.js"(exports, module) {
3122
+ var require_picomatch = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@2.3.1/node_modules/picomatch/index.js": ((exports, module) => {
3139
3123
  module.exports = require_picomatch$1();
3140
- } });
3124
+ }) });
3141
3125
 
3142
3126
  //#endregion
3143
3127
  //#region ../../node_modules/.pnpm/micromatch@4.0.8/node_modules/micromatch/index.js
3144
- var require_micromatch = __commonJS({ "../../node_modules/.pnpm/micromatch@4.0.8/node_modules/micromatch/index.js"(exports, module) {
3128
+ var require_micromatch = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/micromatch@4.0.8/node_modules/micromatch/index.js": ((exports, module) => {
3145
3129
  const util = __require("util");
3146
3130
  const braces = require_braces();
3147
3131
  const picomatch = require_picomatch();
@@ -3188,8 +3172,7 @@ var require_micromatch = __commonJS({ "../../node_modules/.pnpm/micromatch@4.0.8
3188
3172
  if (negated) negatives++;
3189
3173
  for (let item of list) {
3190
3174
  let matched = isMatch(item, true);
3191
- let match = negated ? !matched.isMatch : matched.isMatch;
3192
- if (!match) continue;
3175
+ if (!(negated ? !matched.isMatch : matched.isMatch)) continue;
3193
3176
  if (negated) omit.add(matched.output);
3194
3177
  else {
3195
3178
  omit.delete(matched.output);
@@ -3197,8 +3180,7 @@ var require_micromatch = __commonJS({ "../../node_modules/.pnpm/micromatch@4.0.8
3197
3180
  }
3198
3181
  }
3199
3182
  }
3200
- let result = negatives === patterns.length ? [...items] : [...keep];
3201
- let matches = result.filter((item) => !omit.has(item));
3183
+ let matches = (negatives === patterns.length ? [...items] : [...keep]).filter((item) => !omit.has(item));
3202
3184
  if (options$1 && matches.length === 0) {
3203
3185
  if (options$1.failglob === true) throw new Error(`No matches found for "${patterns.join(", ")}"`);
3204
3186
  if (options$1.nonull === true || options$1.nullglob === true) return options$1.unescape ? patterns.map((p) => p.replace(/\\/g, "")) : patterns;
@@ -3444,11 +3426,10 @@ var require_micromatch = __commonJS({ "../../node_modules/.pnpm/micromatch@4.0.8
3444
3426
  */
3445
3427
  micromatch$1.capture = (glob, input, options$1) => {
3446
3428
  let posix = utils$10.isWindows(options$1);
3447
- let regex = picomatch.makeRe(String(glob), {
3429
+ let match = picomatch.makeRe(String(glob), {
3448
3430
  ...options$1,
3449
3431
  capture: true
3450
- });
3451
- let match = regex.exec(posix ? utils$10.toPosixSlashes(input) : input);
3432
+ }).exec(posix ? utils$10.toPosixSlashes(input) : input);
3452
3433
  if (match) return match.slice(1).map((v) => v === void 0 ? "" : v);
3453
3434
  };
3454
3435
  /**
@@ -3535,13 +3516,12 @@ var require_micromatch = __commonJS({ "../../node_modules/.pnpm/micromatch@4.0.8
3535
3516
  */
3536
3517
  micromatch$1.hasBraces = hasBraces;
3537
3518
  module.exports = micromatch$1;
3538
- } });
3519
+ }) });
3539
3520
 
3540
3521
  //#endregion
3541
3522
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/pattern.js
3542
- var require_pattern = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/pattern.js"(exports) {
3523
+ var require_pattern = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/pattern.js": ((exports) => {
3543
3524
  Object.defineProperty(exports, "__esModule", { value: true });
3544
- exports.isAbsolute = exports.partitionAbsoluteAndRelative = exports.removeDuplicateSlashes = exports.matchAny = exports.convertPatternsToRe = exports.makeRe = exports.getPatternParts = exports.expandBraceExpansion = exports.expandPatternsWithBraceExpansion = exports.isAffectDepthOfReadingPattern = exports.endsWithSlashGlobStar = exports.hasGlobStar = exports.getBaseDirectory = exports.isPatternRelatedToParentDirectory = exports.getPatternsOutsideCurrentDirectory = exports.getPatternsInsideCurrentDirectory = exports.getPositivePatterns = exports.getNegativePatterns = exports.isPositivePattern = exports.isNegativePattern = exports.convertToNegativePattern = exports.convertToPositivePattern = exports.isDynamicPattern = exports.isStaticPattern = void 0;
3545
3525
  const path$6 = __require("path");
3546
3526
  const globParent = require_glob_parent();
3547
3527
  const micromatch = require_micromatch();
@@ -3727,13 +3707,12 @@ var require_pattern = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/nod
3727
3707
  return path$6.isAbsolute(pattern$1);
3728
3708
  }
3729
3709
  exports.isAbsolute = isAbsolute$1;
3730
- } });
3710
+ }) });
3731
3711
 
3732
3712
  //#endregion
3733
3713
  //#region ../../node_modules/.pnpm/merge2@1.4.1/node_modules/merge2/index.js
3734
- var require_merge2 = __commonJS({ "../../node_modules/.pnpm/merge2@1.4.1/node_modules/merge2/index.js"(exports, module) {
3735
- const Stream = __require("stream");
3736
- const PassThrough = Stream.PassThrough;
3714
+ var require_merge2 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/merge2@1.4.1/node_modules/merge2/index.js": ((exports, module) => {
3715
+ const PassThrough = __require("stream").PassThrough;
3737
3716
  const slice = Array.prototype.slice;
3738
3717
  module.exports = merge2$1;
3739
3718
  function merge2$1() {
@@ -3809,13 +3788,12 @@ var require_merge2 = __commonJS({ "../../node_modules/.pnpm/merge2@1.4.1/node_mo
3809
3788
  } else for (let i = 0, len = streams.length; i < len; i++) streams[i] = pauseStreams(streams[i], options$1);
3810
3789
  return streams;
3811
3790
  }
3812
- } });
3791
+ }) });
3813
3792
 
3814
3793
  //#endregion
3815
3794
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/stream.js
3816
- var require_stream$3 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/stream.js"(exports) {
3795
+ var require_stream$3 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/stream.js": ((exports) => {
3817
3796
  Object.defineProperty(exports, "__esModule", { value: true });
3818
- exports.merge = void 0;
3819
3797
  const merge2 = require_merge2();
3820
3798
  function merge(streams) {
3821
3799
  const mergedStream = merge2(streams);
@@ -3830,13 +3808,12 @@ var require_stream$3 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/no
3830
3808
  function propagateCloseEventToSources(streams) {
3831
3809
  streams.forEach((stream$1) => stream$1.emit("close"));
3832
3810
  }
3833
- } });
3811
+ }) });
3834
3812
 
3835
3813
  //#endregion
3836
3814
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/string.js
3837
- var require_string = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/string.js"(exports) {
3815
+ var require_string = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/string.js": ((exports) => {
3838
3816
  Object.defineProperty(exports, "__esModule", { value: true });
3839
- exports.isEmpty = exports.isString = void 0;
3840
3817
  function isString(input) {
3841
3818
  return typeof input === "string";
3842
3819
  }
@@ -3845,13 +3822,12 @@ var require_string = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node
3845
3822
  return input === "";
3846
3823
  }
3847
3824
  exports.isEmpty = isEmpty;
3848
- } });
3825
+ }) });
3849
3826
 
3850
3827
  //#endregion
3851
3828
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/index.js
3852
- var require_utils$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/index.js"(exports) {
3829
+ var require_utils$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/utils/index.js": ((exports) => {
3853
3830
  Object.defineProperty(exports, "__esModule", { value: true });
3854
- exports.string = exports.stream = exports.pattern = exports.path = exports.fs = exports.errno = exports.array = void 0;
3855
3831
  const array = require_array();
3856
3832
  exports.array = array;
3857
3833
  const errno = require_errno();
@@ -3866,13 +3842,12 @@ var require_utils$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/nod
3866
3842
  exports.stream = stream;
3867
3843
  const string = require_string();
3868
3844
  exports.string = string;
3869
- } });
3845
+ }) });
3870
3846
 
3871
3847
  //#endregion
3872
3848
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/managers/tasks.js
3873
- var require_tasks = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/managers/tasks.js"(exports) {
3849
+ var require_tasks = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/managers/tasks.js": ((exports) => {
3874
3850
  Object.defineProperty(exports, "__esModule", { value: true });
3875
- exports.convertPatternGroupToTask = exports.convertPatternGroupsToTasks = exports.groupPatternsByBaseDirectory = exports.getNegativePatternsAsPositive = exports.getPositivePatterns = exports.convertPatternsToTasks = exports.generate = void 0;
3876
3851
  const utils$9 = require_utils$1();
3877
3852
  function generate(input, settings) {
3878
3853
  const patterns = processPatterns(input, settings);
@@ -3933,19 +3908,16 @@ var require_tasks = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_
3933
3908
  }
3934
3909
  exports.getPositivePatterns = getPositivePatterns;
3935
3910
  function getNegativePatternsAsPositive(patterns, ignore) {
3936
- const negative = utils$9.pattern.getNegativePatterns(patterns).concat(ignore);
3937
- const positive = negative.map(utils$9.pattern.convertToPositivePattern);
3938
- return positive;
3911
+ return utils$9.pattern.getNegativePatterns(patterns).concat(ignore).map(utils$9.pattern.convertToPositivePattern);
3939
3912
  }
3940
3913
  exports.getNegativePatternsAsPositive = getNegativePatternsAsPositive;
3941
3914
  function groupPatternsByBaseDirectory(patterns) {
3942
- const group = {};
3943
3915
  return patterns.reduce((collection, pattern$1) => {
3944
3916
  const base = utils$9.pattern.getBaseDirectory(pattern$1);
3945
3917
  if (base in collection) collection[base].push(pattern$1);
3946
3918
  else collection[base] = [pattern$1];
3947
3919
  return collection;
3948
- }, group);
3920
+ }, {});
3949
3921
  }
3950
3922
  exports.groupPatternsByBaseDirectory = groupPatternsByBaseDirectory;
3951
3923
  function convertPatternGroupsToTasks(positive, negative, dynamic) {
@@ -3964,13 +3936,12 @@ var require_tasks = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_
3964
3936
  };
3965
3937
  }
3966
3938
  exports.convertPatternGroupToTask = convertPatternGroupToTask;
3967
- } });
3939
+ }) });
3968
3940
 
3969
3941
  //#endregion
3970
3942
  //#region ../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.js
3971
- var require_async$5 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.js"(exports) {
3943
+ var require_async$5 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.js": ((exports) => {
3972
3944
  Object.defineProperty(exports, "__esModule", { value: true });
3973
- exports.read = void 0;
3974
3945
  function read$3(path$11, settings, callback) {
3975
3946
  settings.fs.lstat(path$11, (lstatError, lstat) => {
3976
3947
  if (lstatError !== null) {
@@ -4002,13 +3973,12 @@ var require_async$5 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.
4002
3973
  function callSuccessCallback$2(callback, result) {
4003
3974
  callback(null, result);
4004
3975
  }
4005
- } });
3976
+ }) });
4006
3977
 
4007
3978
  //#endregion
4008
3979
  //#region ../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/sync.js
4009
- var require_sync$5 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/sync.js"(exports) {
3980
+ var require_sync$5 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/sync.js": ((exports) => {
4010
3981
  Object.defineProperty(exports, "__esModule", { value: true });
4011
- exports.read = void 0;
4012
3982
  function read$2(path$11, settings) {
4013
3983
  const lstat = settings.fs.lstatSync(path$11);
4014
3984
  if (!lstat.isSymbolicLink() || !settings.followSymbolicLink) return lstat;
@@ -4022,13 +3992,12 @@ var require_sync$5 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0
4022
3992
  }
4023
3993
  }
4024
3994
  exports.read = read$2;
4025
- } });
3995
+ }) });
4026
3996
 
4027
3997
  //#endregion
4028
3998
  //#region ../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.js
4029
- var require_fs$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.js"(exports) {
3999
+ var require_fs$2 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.js": ((exports) => {
4030
4000
  Object.defineProperty(exports, "__esModule", { value: true });
4031
- exports.createFileSystemAdapter = exports.FILE_SYSTEM_ADAPTER = void 0;
4032
4001
  const fs$6 = __require("fs");
4033
4002
  exports.FILE_SYSTEM_ADAPTER = {
4034
4003
  lstat: fs$6.lstat,
@@ -4041,11 +4010,11 @@ var require_fs$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5
4041
4010
  return Object.assign(Object.assign({}, exports.FILE_SYSTEM_ADAPTER), fsMethods);
4042
4011
  }
4043
4012
  exports.createFileSystemAdapter = createFileSystemAdapter$1;
4044
- } });
4013
+ }) });
4045
4014
 
4046
4015
  //#endregion
4047
4016
  //#region ../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.js
4048
- var require_settings$3 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.js"(exports) {
4017
+ var require_settings$3 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.js": ((exports) => {
4049
4018
  Object.defineProperty(exports, "__esModule", { value: true });
4050
4019
  const fs$5 = require_fs$2();
4051
4020
  var Settings$3 = class {
@@ -4061,13 +4030,12 @@ var require_settings$3 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat
4061
4030
  }
4062
4031
  };
4063
4032
  exports.default = Settings$3;
4064
- } });
4033
+ }) });
4065
4034
 
4066
4035
  //#endregion
4067
4036
  //#region ../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.js
4068
- var require_out$3 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.js"(exports) {
4037
+ var require_out$3 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.js": ((exports) => {
4069
4038
  Object.defineProperty(exports, "__esModule", { value: true });
4070
- exports.statSync = exports.stat = exports.Settings = void 0;
4071
4039
  const async$1 = require_async$5();
4072
4040
  const sync$1 = require_sync$5();
4073
4041
  const settings_1$3 = require_settings$3();
@@ -4089,21 +4057,21 @@ var require_out$3 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.stat@2.0.
4089
4057
  if (settingsOrOptions instanceof settings_1$3.default) return settingsOrOptions;
4090
4058
  return new settings_1$3.default(settingsOrOptions);
4091
4059
  }
4092
- } });
4060
+ }) });
4093
4061
 
4094
4062
  //#endregion
4095
4063
  //#region ../../node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js
4096
- var require_queue_microtask = __commonJS({ "../../node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js"(exports, module) {
4064
+ var require_queue_microtask = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/queue-microtask@1.2.3/node_modules/queue-microtask/index.js": ((exports, module) => {
4097
4065
  /*! queue-microtask. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
4098
4066
  let promise;
4099
4067
  module.exports = typeof queueMicrotask === "function" ? queueMicrotask.bind(typeof window !== "undefined" ? window : global) : (cb) => (promise || (promise = Promise.resolve())).then(cb).catch((err) => setTimeout(() => {
4100
4068
  throw err;
4101
4069
  }, 0));
4102
- } });
4070
+ }) });
4103
4071
 
4104
4072
  //#endregion
4105
4073
  //#region ../../node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js
4106
- var require_run_parallel = __commonJS({ "../../node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js"(exports, module) {
4074
+ var require_run_parallel = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/run-parallel@1.2.0/node_modules/run-parallel/index.js": ((exports, module) => {
4107
4075
  /*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
4108
4076
  module.exports = runParallel;
4109
4077
  const queueMicrotask$1 = require_queue_microtask();
@@ -4143,13 +4111,12 @@ var require_run_parallel = __commonJS({ "../../node_modules/.pnpm/run-parallel@1
4143
4111
  });
4144
4112
  isSync = false;
4145
4113
  }
4146
- } });
4114
+ }) });
4147
4115
 
4148
4116
  //#endregion
4149
4117
  //#region ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/constants.js
4150
- var require_constants = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/constants.js"(exports) {
4118
+ var require_constants = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/constants.js": ((exports) => {
4151
4119
  Object.defineProperty(exports, "__esModule", { value: true });
4152
- exports.IS_SUPPORT_READDIR_WITH_FILE_TYPES = void 0;
4153
4120
  const NODE_PROCESS_VERSION_PARTS = process.versions.node.split(".");
4154
4121
  if (NODE_PROCESS_VERSION_PARTS[0] === void 0 || NODE_PROCESS_VERSION_PARTS[1] === void 0) throw new Error(`Unexpected behavior. The 'process.versions.node' variable has invalid value: ${process.versions.node}`);
4155
4122
  const MAJOR_VERSION = Number.parseInt(NODE_PROCESS_VERSION_PARTS[0], 10);
@@ -4162,13 +4129,12 @@ var require_constants = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scand
4162
4129
  * IS `true` for Node.js 10.10 and greater.
4163
4130
  */
4164
4131
  exports.IS_SUPPORT_READDIR_WITH_FILE_TYPES = IS_MATCHED_BY_MAJOR || IS_MATCHED_BY_MAJOR_AND_MINOR;
4165
- } });
4132
+ }) });
4166
4133
 
4167
4134
  //#endregion
4168
4135
  //#region ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/utils/fs.js
4169
- var require_fs$1 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/utils/fs.js"(exports) {
4136
+ var require_fs$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/utils/fs.js": ((exports) => {
4170
4137
  Object.defineProperty(exports, "__esModule", { value: true });
4171
- exports.createDirentFromStats = void 0;
4172
4138
  var DirentFromStats = class {
4173
4139
  constructor(name, stats) {
4174
4140
  this.name = name;
@@ -4185,22 +4151,20 @@ var require_fs$1 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.
4185
4151
  return new DirentFromStats(name, stats);
4186
4152
  }
4187
4153
  exports.createDirentFromStats = createDirentFromStats;
4188
- } });
4154
+ }) });
4189
4155
 
4190
4156
  //#endregion
4191
4157
  //#region ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/utils/index.js
4192
- var require_utils = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/utils/index.js"(exports) {
4158
+ var require_utils = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/utils/index.js": ((exports) => {
4193
4159
  Object.defineProperty(exports, "__esModule", { value: true });
4194
- exports.fs = void 0;
4195
4160
  const fs$4 = require_fs$1();
4196
4161
  exports.fs = fs$4;
4197
- } });
4162
+ }) });
4198
4163
 
4199
4164
  //#endregion
4200
4165
  //#region ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/common.js
4201
- var require_common$1 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/common.js"(exports) {
4166
+ var require_common$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/common.js": ((exports) => {
4202
4167
  Object.defineProperty(exports, "__esModule", { value: true });
4203
- exports.joinPathSegments = void 0;
4204
4168
  function joinPathSegments$1(a, b, separator) {
4205
4169
  /**
4206
4170
  * The correct handling of cases when the first segment is a root (`/`, `C:/`) or UNC path (`//?/C:/`).
@@ -4209,13 +4173,12 @@ var require_common$1 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandi
4209
4173
  return a + separator + b;
4210
4174
  }
4211
4175
  exports.joinPathSegments = joinPathSegments$1;
4212
- } });
4176
+ }) });
4213
4177
 
4214
4178
  //#endregion
4215
4179
  //#region ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.js
4216
- var require_async$4 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.js"(exports) {
4180
+ var require_async$4 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.js": ((exports) => {
4217
4181
  Object.defineProperty(exports, "__esModule", { value: true });
4218
- exports.readdir = exports.readdirWithFileTypes = exports.read = void 0;
4219
4182
  const fsStat$5 = require_out$3();
4220
4183
  const rpl = require_run_parallel();
4221
4184
  const constants_1$1 = require_constants();
@@ -4315,13 +4278,12 @@ var require_async$4 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir
4315
4278
  function callSuccessCallback$1(callback, result) {
4316
4279
  callback(null, result);
4317
4280
  }
4318
- } });
4281
+ }) });
4319
4282
 
4320
4283
  //#endregion
4321
4284
  //#region ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/sync.js
4322
- var require_sync$4 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/sync.js"(exports) {
4285
+ var require_sync$4 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/sync.js": ((exports) => {
4323
4286
  Object.defineProperty(exports, "__esModule", { value: true });
4324
- exports.readdir = exports.readdirWithFileTypes = exports.read = void 0;
4325
4287
  const fsStat$4 = require_out$3();
4326
4288
  const constants_1 = require_constants();
4327
4289
  const utils$7 = require_utils();
@@ -4332,8 +4294,7 @@ var require_sync$4 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@
4332
4294
  }
4333
4295
  exports.read = read;
4334
4296
  function readdirWithFileTypes(directory, settings) {
4335
- const dirents = settings.fs.readdirSync(directory, { withFileTypes: true });
4336
- return dirents.map((dirent) => {
4297
+ return settings.fs.readdirSync(directory, { withFileTypes: true }).map((dirent) => {
4337
4298
  const entry = {
4338
4299
  dirent,
4339
4300
  name: dirent.name,
@@ -4350,8 +4311,7 @@ var require_sync$4 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@
4350
4311
  }
4351
4312
  exports.readdirWithFileTypes = readdirWithFileTypes;
4352
4313
  function readdir(directory, settings) {
4353
- const names = settings.fs.readdirSync(directory);
4354
- return names.map((name) => {
4314
+ return settings.fs.readdirSync(directory).map((name) => {
4355
4315
  const entryPath = common$3.joinPathSegments(directory, name, settings.pathSegmentSeparator);
4356
4316
  const stats = fsStat$4.statSync(entryPath, settings.fsStatSettings);
4357
4317
  const entry = {
@@ -4364,13 +4324,12 @@ var require_sync$4 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@
4364
4324
  });
4365
4325
  }
4366
4326
  exports.readdir = readdir;
4367
- } });
4327
+ }) });
4368
4328
 
4369
4329
  //#endregion
4370
4330
  //#region ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.js
4371
- var require_fs = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.js"(exports) {
4331
+ var require_fs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.js": ((exports) => {
4372
4332
  Object.defineProperty(exports, "__esModule", { value: true });
4373
- exports.createFileSystemAdapter = exports.FILE_SYSTEM_ADAPTER = void 0;
4374
4333
  const fs$3 = __require("fs");
4375
4334
  exports.FILE_SYSTEM_ADAPTER = {
4376
4335
  lstat: fs$3.lstat,
@@ -4385,11 +4344,11 @@ var require_fs = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.
4385
4344
  return Object.assign(Object.assign({}, exports.FILE_SYSTEM_ADAPTER), fsMethods);
4386
4345
  }
4387
4346
  exports.createFileSystemAdapter = createFileSystemAdapter;
4388
- } });
4347
+ }) });
4389
4348
 
4390
4349
  //#endregion
4391
4350
  //#region ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.js
4392
- var require_settings$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.js"(exports) {
4351
+ var require_settings$2 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.js": ((exports) => {
4393
4352
  Object.defineProperty(exports, "__esModule", { value: true });
4394
4353
  const path$4 = __require("path");
4395
4354
  const fsStat$3 = require_out$3();
@@ -4413,13 +4372,12 @@ var require_settings$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scan
4413
4372
  }
4414
4373
  };
4415
4374
  exports.default = Settings$2;
4416
- } });
4375
+ }) });
4417
4376
 
4418
4377
  //#endregion
4419
4378
  //#region ../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.js
4420
- var require_out$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.js"(exports) {
4379
+ var require_out$2 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.js": ((exports) => {
4421
4380
  Object.defineProperty(exports, "__esModule", { value: true });
4422
- exports.Settings = exports.scandirSync = exports.scandir = void 0;
4423
4381
  const async = require_async$4();
4424
4382
  const sync = require_sync$4();
4425
4383
  const settings_1$2 = require_settings$2();
@@ -4441,11 +4399,11 @@ var require_out$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.scandir@2
4441
4399
  if (settingsOrOptions instanceof settings_1$2.default) return settingsOrOptions;
4442
4400
  return new settings_1$2.default(settingsOrOptions);
4443
4401
  }
4444
- } });
4402
+ }) });
4445
4403
 
4446
4404
  //#endregion
4447
4405
  //#region ../../node_modules/.pnpm/reusify@1.1.0/node_modules/reusify/reusify.js
4448
- var require_reusify = __commonJS({ "../../node_modules/.pnpm/reusify@1.1.0/node_modules/reusify/reusify.js"(exports, module) {
4406
+ var require_reusify = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/reusify@1.1.0/node_modules/reusify/reusify.js": ((exports, module) => {
4449
4407
  function reusify$1(Constructor) {
4450
4408
  var head = new Constructor();
4451
4409
  var tail = head;
@@ -4469,11 +4427,11 @@ var require_reusify = __commonJS({ "../../node_modules/.pnpm/reusify@1.1.0/node_
4469
4427
  };
4470
4428
  }
4471
4429
  module.exports = reusify$1;
4472
- } });
4430
+ }) });
4473
4431
 
4474
4432
  //#endregion
4475
4433
  //#region ../../node_modules/.pnpm/fastq@1.19.1/node_modules/fastq/queue.js
4476
- var require_queue = __commonJS({ "../../node_modules/.pnpm/fastq@1.19.1/node_modules/fastq/queue.js"(exports, module) {
4434
+ var require_queue = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fastq@1.19.1/node_modules/fastq/queue.js": ((exports, module) => {
4477
4435
  var reusify = require_reusify();
4478
4436
  function fastqueue(context, worker, _concurrency) {
4479
4437
  if (typeof context === "function") {
@@ -4689,7 +4647,7 @@ var require_queue = __commonJS({ "../../node_modules/.pnpm/fastq@1.19.1/node_mod
4689
4647
  return p;
4690
4648
  }
4691
4649
  function drained() {
4692
- var p = new Promise(function(resolve$2) {
4650
+ return new Promise(function(resolve$2) {
4693
4651
  process.nextTick(function() {
4694
4652
  if (queue.idle()) resolve$2();
4695
4653
  else {
@@ -4702,18 +4660,16 @@ var require_queue = __commonJS({ "../../node_modules/.pnpm/fastq@1.19.1/node_mod
4702
4660
  }
4703
4661
  });
4704
4662
  });
4705
- return p;
4706
4663
  }
4707
4664
  }
4708
4665
  module.exports = fastqueue;
4709
4666
  module.exports.promise = queueAsPromised;
4710
- } });
4667
+ }) });
4711
4668
 
4712
4669
  //#endregion
4713
4670
  //#region ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/common.js
4714
- var require_common = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/common.js"(exports) {
4671
+ var require_common = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/common.js": ((exports) => {
4715
4672
  Object.defineProperty(exports, "__esModule", { value: true });
4716
- exports.joinPathSegments = exports.replacePathSegmentSeparator = exports.isAppliedFilter = exports.isFatalError = void 0;
4717
4673
  function isFatalError(settings, error) {
4718
4674
  if (settings.errorFilter === null) return true;
4719
4675
  return !settings.errorFilter(error);
@@ -4736,11 +4692,11 @@ var require_common = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2
4736
4692
  return a + separator + b;
4737
4693
  }
4738
4694
  exports.joinPathSegments = joinPathSegments;
4739
- } });
4695
+ }) });
4740
4696
 
4741
4697
  //#endregion
4742
4698
  //#region ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.js
4743
- var require_reader$1 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.js"(exports) {
4699
+ var require_reader$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.js": ((exports) => {
4744
4700
  Object.defineProperty(exports, "__esModule", { value: true });
4745
4701
  const common$2 = require_common();
4746
4702
  var Reader$1 = class {
@@ -4751,11 +4707,11 @@ var require_reader$1 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1
4751
4707
  }
4752
4708
  };
4753
4709
  exports.default = Reader$1;
4754
- } });
4710
+ }) });
4755
4711
 
4756
4712
  //#endregion
4757
4713
  //#region ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.js
4758
- var require_async$3 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.js"(exports) {
4714
+ var require_async$3 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.js": ((exports) => {
4759
4715
  Object.defineProperty(exports, "__esModule", { value: true });
4760
4716
  const events_1 = __require("events");
4761
4717
  const fsScandir$2 = require_out$2();
@@ -4837,11 +4793,11 @@ var require_async$3 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.
4837
4793
  }
4838
4794
  };
4839
4795
  exports.default = AsyncReader;
4840
- } });
4796
+ }) });
4841
4797
 
4842
4798
  //#endregion
4843
4799
  //#region ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.js
4844
- var require_async$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.js"(exports) {
4800
+ var require_async$2 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.js": ((exports) => {
4845
4801
  Object.defineProperty(exports, "__esModule", { value: true });
4846
4802
  const async_1$4 = require_async$3();
4847
4803
  var AsyncProvider = class {
@@ -4871,11 +4827,11 @@ var require_async$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.
4871
4827
  function callSuccessCallback(callback, entries) {
4872
4828
  callback(null, entries);
4873
4829
  }
4874
- } });
4830
+ }) });
4875
4831
 
4876
4832
  //#endregion
4877
4833
  //#region ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/stream.js
4878
- var require_stream$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/stream.js"(exports) {
4834
+ var require_stream$2 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/stream.js": ((exports) => {
4879
4835
  Object.defineProperty(exports, "__esModule", { value: true });
4880
4836
  const stream_1$5 = __require("stream");
4881
4837
  const async_1$3 = require_async$3();
@@ -4907,11 +4863,11 @@ var require_stream$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1
4907
4863
  }
4908
4864
  };
4909
4865
  exports.default = StreamProvider;
4910
- } });
4866
+ }) });
4911
4867
 
4912
4868
  //#endregion
4913
4869
  //#region ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/sync.js
4914
- var require_sync$3 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/sync.js"(exports) {
4870
+ var require_sync$3 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/sync.js": ((exports) => {
4915
4871
  Object.defineProperty(exports, "__esModule", { value: true });
4916
4872
  const fsScandir$1 = require_out$2();
4917
4873
  const common = require_common();
@@ -4960,11 +4916,11 @@ var require_sync$3 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2
4960
4916
  }
4961
4917
  };
4962
4918
  exports.default = SyncReader;
4963
- } });
4919
+ }) });
4964
4920
 
4965
4921
  //#endregion
4966
4922
  //#region ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/sync.js
4967
- var require_sync$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/sync.js"(exports) {
4923
+ var require_sync$2 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/sync.js": ((exports) => {
4968
4924
  Object.defineProperty(exports, "__esModule", { value: true });
4969
4925
  const sync_1$3 = require_sync$3();
4970
4926
  var SyncProvider = class {
@@ -4978,11 +4934,11 @@ var require_sync$2 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2
4978
4934
  }
4979
4935
  };
4980
4936
  exports.default = SyncProvider;
4981
- } });
4937
+ }) });
4982
4938
 
4983
4939
  //#endregion
4984
4940
  //#region ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.js
4985
- var require_settings$1 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.js"(exports) {
4941
+ var require_settings$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.js": ((exports) => {
4986
4942
  Object.defineProperty(exports, "__esModule", { value: true });
4987
4943
  const path$3 = __require("path");
4988
4944
  const fsScandir = require_out$2();
@@ -5008,13 +4964,12 @@ var require_settings$1 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk
5008
4964
  }
5009
4965
  };
5010
4966
  exports.default = Settings$1;
5011
- } });
4967
+ }) });
5012
4968
 
5013
4969
  //#endregion
5014
4970
  //#region ../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.js
5015
- var require_out$1 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.js"(exports) {
4971
+ var require_out$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.js": ((exports) => {
5016
4972
  Object.defineProperty(exports, "__esModule", { value: true });
5017
- exports.Settings = exports.walkStream = exports.walkSync = exports.walk = void 0;
5018
4973
  const async_1$2 = require_async$2();
5019
4974
  const stream_1$4 = require_stream$2();
5020
4975
  const sync_1$2 = require_sync$2();
@@ -5030,25 +4985,23 @@ var require_out$1 = __commonJS({ "../../node_modules/.pnpm/@nodelib+fs.walk@1.2.
5030
4985
  exports.walk = walk;
5031
4986
  function walkSync(directory, optionsOrSettings) {
5032
4987
  const settings = getSettings(optionsOrSettings);
5033
- const provider = new sync_1$2.default(directory, settings);
5034
- return provider.read();
4988
+ return new sync_1$2.default(directory, settings).read();
5035
4989
  }
5036
4990
  exports.walkSync = walkSync;
5037
4991
  function walkStream(directory, optionsOrSettings) {
5038
4992
  const settings = getSettings(optionsOrSettings);
5039
- const provider = new stream_1$4.default(directory, settings);
5040
- return provider.read();
4993
+ return new stream_1$4.default(directory, settings).read();
5041
4994
  }
5042
4995
  exports.walkStream = walkStream;
5043
4996
  function getSettings(settingsOrOptions = {}) {
5044
4997
  if (settingsOrOptions instanceof settings_1$1.default) return settingsOrOptions;
5045
4998
  return new settings_1$1.default(settingsOrOptions);
5046
4999
  }
5047
- } });
5000
+ }) });
5048
5001
 
5049
5002
  //#endregion
5050
5003
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/reader.js
5051
- var require_reader = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/reader.js"(exports) {
5004
+ var require_reader = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/reader.js": ((exports) => {
5052
5005
  Object.defineProperty(exports, "__esModule", { value: true });
5053
5006
  const path$2 = __require("path");
5054
5007
  const fsStat$2 = require_out$3();
@@ -5079,11 +5032,11 @@ var require_reader = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node
5079
5032
  }
5080
5033
  };
5081
5034
  exports.default = Reader;
5082
- } });
5035
+ }) });
5083
5036
 
5084
5037
  //#endregion
5085
5038
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/stream.js
5086
- var require_stream$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/stream.js"(exports) {
5039
+ var require_stream$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/stream.js": ((exports) => {
5087
5040
  Object.defineProperty(exports, "__esModule", { value: true });
5088
5041
  const stream_1$3 = __require("stream");
5089
5042
  const fsStat$1 = require_out$3();
@@ -5126,11 +5079,11 @@ var require_stream$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/no
5126
5079
  }
5127
5080
  };
5128
5081
  exports.default = ReaderStream;
5129
- } });
5082
+ }) });
5130
5083
 
5131
5084
  //#endregion
5132
5085
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/async.js
5133
- var require_async$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/async.js"(exports) {
5086
+ var require_async$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/async.js": ((exports) => {
5134
5087
  Object.defineProperty(exports, "__esModule", { value: true });
5135
5088
  const fsWalk$1 = require_out$1();
5136
5089
  const reader_1$1 = require_reader();
@@ -5160,11 +5113,11 @@ var require_async$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/nod
5160
5113
  }
5161
5114
  };
5162
5115
  exports.default = ReaderAsync;
5163
- } });
5116
+ }) });
5164
5117
 
5165
5118
  //#endregion
5166
5119
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/matchers/matcher.js
5167
- var require_matcher = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/matchers/matcher.js"(exports) {
5120
+ var require_matcher = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/matchers/matcher.js": ((exports) => {
5168
5121
  Object.defineProperty(exports, "__esModule", { value: true });
5169
5122
  const utils$5 = require_utils$1();
5170
5123
  var Matcher = class {
@@ -5188,10 +5141,8 @@ var require_matcher = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/nod
5188
5141
  }
5189
5142
  }
5190
5143
  _getPatternSegments(pattern$1) {
5191
- const parts = utils$5.pattern.getPatternParts(pattern$1, this._micromatchOptions);
5192
- return parts.map((part) => {
5193
- const dynamic = utils$5.pattern.isDynamicPattern(part, this._settings);
5194
- if (!dynamic) return {
5144
+ return utils$5.pattern.getPatternParts(pattern$1, this._micromatchOptions).map((part) => {
5145
+ if (!utils$5.pattern.isDynamicPattern(part, this._settings)) return {
5195
5146
  dynamic: false,
5196
5147
  pattern: part
5197
5148
  };
@@ -5207,11 +5158,11 @@ var require_matcher = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/nod
5207
5158
  }
5208
5159
  };
5209
5160
  exports.default = Matcher;
5210
- } });
5161
+ }) });
5211
5162
 
5212
5163
  //#endregion
5213
5164
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/matchers/partial.js
5214
- var require_partial = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/matchers/partial.js"(exports) {
5165
+ var require_partial = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/matchers/partial.js": ((exports) => {
5215
5166
  Object.defineProperty(exports, "__esModule", { value: true });
5216
5167
  const matcher_1 = require_matcher();
5217
5168
  var PartialMatcher = class extends matcher_1.default {
@@ -5229,23 +5180,22 @@ var require_partial = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/nod
5229
5180
  * ^ true/false ^ always true
5230
5181
  */
5231
5182
  if (!pattern$1.complete && levels > section.length) return true;
5232
- const match = parts.every((part, index) => {
5183
+ if (parts.every((part, index) => {
5233
5184
  const segment = pattern$1.segments[index];
5234
5185
  if (segment.dynamic && segment.patternRe.test(part)) return true;
5235
5186
  if (!segment.dynamic && segment.pattern === part) return true;
5236
5187
  return false;
5237
- });
5238
- if (match) return true;
5188
+ })) return true;
5239
5189
  }
5240
5190
  return false;
5241
5191
  }
5242
5192
  };
5243
5193
  exports.default = PartialMatcher;
5244
- } });
5194
+ }) });
5245
5195
 
5246
5196
  //#endregion
5247
5197
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/filters/deep.js
5248
- var require_deep = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/filters/deep.js"(exports) {
5198
+ var require_deep = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/filters/deep.js": ((exports) => {
5249
5199
  Object.defineProperty(exports, "__esModule", { value: true });
5250
5200
  const utils$4 = require_utils$1();
5251
5201
  const partial_1 = require_partial();
@@ -5297,11 +5247,11 @@ var require_deep = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_m
5297
5247
  }
5298
5248
  };
5299
5249
  exports.default = DeepFilter;
5300
- } });
5250
+ }) });
5301
5251
 
5302
5252
  //#endregion
5303
5253
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/filters/entry.js
5304
- var require_entry$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/filters/entry.js"(exports) {
5254
+ var require_entry$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/filters/entry.js": ((exports) => {
5305
5255
  Object.defineProperty(exports, "__esModule", { value: true });
5306
5256
  const utils$3 = require_utils$1();
5307
5257
  var EntryFilter = class {
@@ -5342,12 +5292,9 @@ var require_entry$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/nod
5342
5292
  return this._settings.onlyDirectories && !entry.dirent.isDirectory();
5343
5293
  }
5344
5294
  _isMatchToPatternsSet(filepath, patterns, isDirectory) {
5345
- const isMatched = this._isMatchToPatterns(filepath, patterns.positive.all, isDirectory);
5346
- if (!isMatched) return false;
5347
- const isMatchedByRelativeNegative = this._isMatchToPatterns(filepath, patterns.negative.relative, isDirectory);
5348
- if (isMatchedByRelativeNegative) return false;
5349
- const isMatchedByAbsoluteNegative = this._isMatchToAbsoluteNegative(filepath, patterns.negative.absolute, isDirectory);
5350
- if (isMatchedByAbsoluteNegative) return false;
5295
+ if (!this._isMatchToPatterns(filepath, patterns.positive.all, isDirectory)) return false;
5296
+ if (this._isMatchToPatterns(filepath, patterns.negative.relative, isDirectory)) return false;
5297
+ if (this._isMatchToAbsoluteNegative(filepath, patterns.negative.absolute, isDirectory)) return false;
5351
5298
  return true;
5352
5299
  }
5353
5300
  _isMatchToAbsoluteNegative(filepath, patternsRe, isDirectory) {
@@ -5363,11 +5310,11 @@ var require_entry$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/nod
5363
5310
  }
5364
5311
  };
5365
5312
  exports.default = EntryFilter;
5366
- } });
5313
+ }) });
5367
5314
 
5368
5315
  //#endregion
5369
5316
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/filters/error.js
5370
- var require_error = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/filters/error.js"(exports) {
5317
+ var require_error = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/filters/error.js": ((exports) => {
5371
5318
  Object.defineProperty(exports, "__esModule", { value: true });
5372
5319
  const utils$2 = require_utils$1();
5373
5320
  var ErrorFilter = class {
@@ -5382,11 +5329,11 @@ var require_error = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_
5382
5329
  }
5383
5330
  };
5384
5331
  exports.default = ErrorFilter;
5385
- } });
5332
+ }) });
5386
5333
 
5387
5334
  //#endregion
5388
5335
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/transformers/entry.js
5389
- var require_entry = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/transformers/entry.js"(exports) {
5336
+ var require_entry = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/transformers/entry.js": ((exports) => {
5390
5337
  Object.defineProperty(exports, "__esModule", { value: true });
5391
5338
  const utils$1 = require_utils$1();
5392
5339
  var EntryTransformer = class {
@@ -5408,11 +5355,11 @@ var require_entry = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_
5408
5355
  }
5409
5356
  };
5410
5357
  exports.default = EntryTransformer;
5411
- } });
5358
+ }) });
5412
5359
 
5413
5360
  //#endregion
5414
5361
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/provider.js
5415
- var require_provider = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/provider.js"(exports) {
5362
+ var require_provider = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/provider.js": ((exports) => {
5416
5363
  Object.defineProperty(exports, "__esModule", { value: true });
5417
5364
  const path$1 = __require("path");
5418
5365
  const deep_1 = require_deep();
@@ -5460,11 +5407,11 @@ var require_provider = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/no
5460
5407
  }
5461
5408
  };
5462
5409
  exports.default = Provider;
5463
- } });
5410
+ }) });
5464
5411
 
5465
5412
  //#endregion
5466
5413
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/async.js
5467
- var require_async = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/async.js"(exports) {
5414
+ var require_async = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/async.js": ((exports) => {
5468
5415
  Object.defineProperty(exports, "__esModule", { value: true });
5469
5416
  const async_1$1 = require_async$1();
5470
5417
  const provider_1$2 = require_provider();
@@ -5476,8 +5423,7 @@ var require_async = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_
5476
5423
  async read(task) {
5477
5424
  const root = this._getRootDirectory(task);
5478
5425
  const options$1 = this._getReaderOptions(task);
5479
- const entries = await this.api(root, task, options$1);
5480
- return entries.map((entry) => options$1.transform(entry));
5426
+ return (await this.api(root, task, options$1)).map((entry) => options$1.transform(entry));
5481
5427
  }
5482
5428
  api(root, task, options$1) {
5483
5429
  if (task.dynamic) return this._reader.dynamic(root, options$1);
@@ -5485,11 +5431,11 @@ var require_async = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_
5485
5431
  }
5486
5432
  };
5487
5433
  exports.default = ProviderAsync;
5488
- } });
5434
+ }) });
5489
5435
 
5490
5436
  //#endregion
5491
5437
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/stream.js
5492
- var require_stream = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/stream.js"(exports) {
5438
+ var require_stream = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/stream.js": ((exports) => {
5493
5439
  Object.defineProperty(exports, "__esModule", { value: true });
5494
5440
  const stream_1$1 = __require("stream");
5495
5441
  const stream_2 = require_stream$1();
@@ -5517,11 +5463,11 @@ var require_stream = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node
5517
5463
  }
5518
5464
  };
5519
5465
  exports.default = ProviderStream;
5520
- } });
5466
+ }) });
5521
5467
 
5522
5468
  //#endregion
5523
5469
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/sync.js
5524
- var require_sync$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/sync.js"(exports) {
5470
+ var require_sync$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/readers/sync.js": ((exports) => {
5525
5471
  Object.defineProperty(exports, "__esModule", { value: true });
5526
5472
  const fsStat = require_out$3();
5527
5473
  const fsWalk = require_out$1();
@@ -5559,11 +5505,11 @@ var require_sync$1 = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node
5559
5505
  }
5560
5506
  };
5561
5507
  exports.default = ReaderSync;
5562
- } });
5508
+ }) });
5563
5509
 
5564
5510
  //#endregion
5565
5511
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/sync.js
5566
- var require_sync = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/sync.js"(exports) {
5512
+ var require_sync = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/providers/sync.js": ((exports) => {
5567
5513
  Object.defineProperty(exports, "__esModule", { value: true });
5568
5514
  const sync_1$1 = require_sync$1();
5569
5515
  const provider_1 = require_provider();
@@ -5575,8 +5521,7 @@ var require_sync = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_m
5575
5521
  read(task) {
5576
5522
  const root = this._getRootDirectory(task);
5577
5523
  const options$1 = this._getReaderOptions(task);
5578
- const entries = this.api(root, task, options$1);
5579
- return entries.map(options$1.transform);
5524
+ return this.api(root, task, options$1).map(options$1.transform);
5580
5525
  }
5581
5526
  api(root, task, options$1) {
5582
5527
  if (task.dynamic) return this._reader.dynamic(root, options$1);
@@ -5584,13 +5529,12 @@ var require_sync = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_m
5584
5529
  }
5585
5530
  };
5586
5531
  exports.default = ProviderSync;
5587
- } });
5532
+ }) });
5588
5533
 
5589
5534
  //#endregion
5590
5535
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/settings.js
5591
- var require_settings = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/settings.js"(exports) {
5536
+ var require_settings = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/settings.js": ((exports) => {
5592
5537
  Object.defineProperty(exports, "__esModule", { value: true });
5593
- exports.DEFAULT_FILE_SYSTEM_ADAPTER = void 0;
5594
5538
  const fs$1 = __require("fs");
5595
5539
  const os = __require("os");
5596
5540
  /**
@@ -5642,11 +5586,11 @@ var require_settings = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/no
5642
5586
  }
5643
5587
  };
5644
5588
  exports.default = Settings;
5645
- } });
5589
+ }) });
5646
5590
 
5647
5591
  //#endregion
5648
5592
  //#region ../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/index.js
5649
- var require_out = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/index.js"(exports, module) {
5593
+ var require_out = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_modules/fast-glob/out/index.js": ((exports, module) => {
5650
5594
  const taskManager = require_tasks();
5651
5595
  const async_1 = require_async();
5652
5596
  const stream_1 = require_stream();
@@ -5704,32 +5648,30 @@ var require_out = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_mo
5704
5648
  return utils.path.convertPathToPattern(source);
5705
5649
  }
5706
5650
  FastGlob$1.convertPathToPattern = convertPathToPattern;
5707
- let posix;
5708
- (function(posix$1) {
5651
+ (function(posix) {
5709
5652
  function escapePath$1(source) {
5710
5653
  assertPatternsInput(source);
5711
5654
  return utils.path.escapePosixPath(source);
5712
5655
  }
5713
- posix$1.escapePath = escapePath$1;
5656
+ posix.escapePath = escapePath$1;
5714
5657
  function convertPathToPattern$1(source) {
5715
5658
  assertPatternsInput(source);
5716
5659
  return utils.path.convertPosixPathToPattern(source);
5717
5660
  }
5718
- posix$1.convertPathToPattern = convertPathToPattern$1;
5719
- })(posix = FastGlob$1.posix || (FastGlob$1.posix = {}));
5720
- let win32$1;
5721
- (function(win32$2) {
5661
+ posix.convertPathToPattern = convertPathToPattern$1;
5662
+ })(FastGlob$1.posix || (FastGlob$1.posix = {}));
5663
+ (function(win32$1) {
5722
5664
  function escapePath$1(source) {
5723
5665
  assertPatternsInput(source);
5724
5666
  return utils.path.escapeWindowsPath(source);
5725
5667
  }
5726
- win32$2.escapePath = escapePath$1;
5668
+ win32$1.escapePath = escapePath$1;
5727
5669
  function convertPathToPattern$1(source) {
5728
5670
  assertPatternsInput(source);
5729
5671
  return utils.path.convertWindowsPathToPattern(source);
5730
5672
  }
5731
- win32$2.convertPathToPattern = convertPathToPattern$1;
5732
- })(win32$1 = FastGlob$1.win32 || (FastGlob$1.win32 = {}));
5673
+ win32$1.convertPathToPattern = convertPathToPattern$1;
5674
+ })(FastGlob$1.win32 || (FastGlob$1.win32 = {}));
5733
5675
  })(FastGlob || (FastGlob = {}));
5734
5676
  function getWorks(source, _Provider, options$1) {
5735
5677
  const patterns = [].concat(source);
@@ -5739,15 +5681,14 @@ var require_out = __commonJS({ "../../node_modules/.pnpm/fast-glob@3.3.3/node_mo
5739
5681
  return tasks.map(provider.read, provider);
5740
5682
  }
5741
5683
  function assertPatternsInput(input) {
5742
- const source = [].concat(input);
5743
- const isValidSource = source.every((item) => utils.string.isString(item) && !utils.string.isEmpty(item));
5744
- if (!isValidSource) throw new TypeError("Patterns must be a string (non empty) or an array of strings");
5684
+ if (![].concat(input).every((item) => utils.string.isString(item) && !utils.string.isEmpty(item))) throw new TypeError("Patterns must be a string (non empty) or an array of strings");
5745
5685
  }
5746
5686
  module.exports = FastGlob;
5747
- } });
5687
+ }) });
5748
5688
 
5749
5689
  //#endregion
5750
5690
  //#region ../../node_modules/.pnpm/image-meta@0.2.1/node_modules/image-meta/dist/index.mjs
5691
+ var import_out = /* @__PURE__ */ __toESM(require_out(), 1);
5751
5692
  const decoder = new TextDecoder();
5752
5693
  const toUTF8String = (input, start = 0, end = input.length) => decoder.decode(input.slice(start, end));
5753
5694
  const toHexString = (input, start = 0, end = input.length) => input.slice(start, end).reduce((memo, i) => memo + ("0" + i.toString(16)).slice(-2), "");
@@ -5799,8 +5740,7 @@ const ICO = {
5799
5740
  const reserved = readUInt16LE(input, 0);
5800
5741
  const imageCount = readUInt16LE(input, 4);
5801
5742
  if (reserved !== 0 || imageCount === 0) return false;
5802
- const imageType = readUInt16LE(input, 2);
5803
- return imageType === TYPE_ICON;
5743
+ return readUInt16LE(input, 2) === TYPE_ICON;
5804
5744
  },
5805
5745
  calculate(input) {
5806
5746
  const nbImages = readUInt16LE(input, 4);
@@ -5821,8 +5761,7 @@ const CUR = {
5821
5761
  const reserved = readUInt16LE(input, 0);
5822
5762
  const imageCount = readUInt16LE(input, 4);
5823
5763
  if (reserved !== 0 || imageCount === 0) return false;
5824
- const imageType = readUInt16LE(input, 2);
5825
- return imageType === TYPE_CURSOR;
5764
+ return readUInt16LE(input, 2) === TYPE_CURSOR;
5826
5765
  },
5827
5766
  calculate: (input) => ICO.calculate(input)
5828
5767
  };
@@ -5931,11 +5870,9 @@ const BoxTypes = {
5931
5870
  const calculateRREQLength = (box) => {
5932
5871
  const unit = box[0];
5933
5872
  let offset = 1 + 2 * unit;
5934
- const numStdFlags = readUInt16BE(box, offset);
5935
- const flagsLength = numStdFlags * (2 + unit);
5873
+ const flagsLength = readUInt16BE(box, offset) * (2 + unit);
5936
5874
  offset = offset + 2 + flagsLength;
5937
- const numVendorFeatures = readUInt16BE(box, offset);
5938
- const featuresLength = numVendorFeatures * (16 + unit);
5875
+ const featuresLength = readUInt16BE(box, offset) * (16 + unit);
5939
5876
  return offset + 2 + featuresLength;
5940
5877
  };
5941
5878
  const parseIHDR = (box) => {
@@ -5958,13 +5895,10 @@ const JP2 = {
5958
5895
  const signatureLength = readUInt32BE(input, 0);
5959
5896
  const ftypBoxLength = readUInt16BE(input, signatureLength + 2);
5960
5897
  let offset = signatureLength + 4 + ftypBoxLength;
5961
- const nextBoxType = toHexString(input, offset, offset + 4);
5962
- switch (nextBoxType) {
5963
- case BoxTypes.rreq: {
5964
- const MAGIC = 4;
5965
- offset = offset + 4 + MAGIC + calculateRREQLength(input.slice(offset + 4));
5898
+ switch (toHexString(input, offset, offset + 4)) {
5899
+ case BoxTypes.rreq:
5900
+ offset = offset + 4 + 4 + calculateRREQLength(input.slice(offset + 4));
5966
5901
  return parseIHDR(input.slice(offset + 8, offset + 24));
5967
- }
5968
5902
  case BoxTypes.jp2h: return parseIHDR(input.slice(offset + 8, offset + 24));
5969
5903
  default: throw new TypeError("Unsupported header found: " + toUTF8String(input, offset, offset + 4));
5970
5904
  }
@@ -5988,20 +5922,16 @@ function extractSize(input, index) {
5988
5922
  };
5989
5923
  }
5990
5924
  function extractOrientation(exifBlock, isBigEndian) {
5991
- const idfOffset = 8;
5992
- const offset = EXIF_HEADER_BYTES + idfOffset;
5925
+ const offset = EXIF_HEADER_BYTES + 8;
5993
5926
  const idfDirectoryEntries = readUInt(exifBlock, 16, offset, isBigEndian);
5994
5927
  for (let directoryEntryNumber = 0; directoryEntryNumber < idfDirectoryEntries; directoryEntryNumber++) {
5995
5928
  const start = offset + NUM_DIRECTORY_ENTRIES_BYTES + directoryEntryNumber * IDF_ENTRY_BYTES;
5996
5929
  const end = start + IDF_ENTRY_BYTES;
5997
5930
  if (start > exifBlock.length) return;
5998
5931
  const block = exifBlock.slice(start, end);
5999
- const tagNumber = readUInt(block, 16, 0, isBigEndian);
6000
- if (tagNumber === 274) {
6001
- const dataFormat = readUInt(block, 16, 2, isBigEndian);
6002
- if (dataFormat !== 3) return;
6003
- const numberOfComponents = readUInt(block, 32, 4, isBigEndian);
6004
- if (numberOfComponents !== 1) return;
5932
+ if (readUInt(block, 16, 0, isBigEndian) === 274) {
5933
+ if (readUInt(block, 16, 2, isBigEndian) !== 3) return;
5934
+ if (readUInt(block, 32, 4, isBigEndian) !== 1) return;
6005
5935
  return readUInt(block, 16, 8, isBigEndian);
6006
5936
  }
6007
5937
  }
@@ -6010,8 +5940,7 @@ function validateExifBlock(input, index) {
6010
5940
  const exifBlock = input.slice(APP1_DATA_SIZE_BYTES, index);
6011
5941
  const byteAlign = toHexString(exifBlock, EXIF_HEADER_BYTES, EXIF_HEADER_BYTES + TIFF_BYTE_ALIGN_BYTES);
6012
5942
  const isBigEndian = byteAlign === BIG_ENDIAN_BYTE_ALIGN;
6013
- const isLittleEndian = byteAlign === LITTLE_ENDIAN_BYTE_ALIGN;
6014
- if (isBigEndian || isLittleEndian) return extractOrientation(exifBlock, isBigEndian);
5943
+ if (isBigEndian || byteAlign === LITTLE_ENDIAN_BYTE_ALIGN) return extractOrientation(exifBlock, isBigEndian);
6015
5944
  }
6016
5945
  function validateInput(input, index) {
6017
5946
  if (index > input.length) throw new TypeError("Corrupt JPG, exceeded buffer limits");
@@ -6120,8 +6049,7 @@ const PNM = {
6120
6049
  const signature = toUTF8String(input, 0, 2);
6121
6050
  const type = PNMTypes[signature];
6122
6051
  const lines = toUTF8String(input, 3).split(/[\n\r]+/);
6123
- const handler = handlers[type] || handlers.default;
6124
- return handler(lines);
6052
+ return (handlers[type] || handlers.default)(lines);
6125
6053
  }
6126
6054
  };
6127
6055
  const PSD = {
@@ -6153,7 +6081,7 @@ const units = {
6153
6081
  const unitsReg = /* @__PURE__ */ new RegExp(`^([0-9.]+(?:e\\d+)?)(${Object.keys(units).join("|")})?$`);
6154
6082
  function parseLength(len) {
6155
6083
  const m = unitsReg.exec(len);
6156
- if (!m) return void 0;
6084
+ if (!m) return;
6157
6085
  return Math.round(Number(m[1]) * (units[m[2]] || 1));
6158
6086
  }
6159
6087
  function parseViewbox(viewbox) {
@@ -6226,8 +6154,7 @@ function readIFD(buffer, isBigEndian) {
6226
6154
  }
6227
6155
  function readValue(buffer, isBigEndian) {
6228
6156
  const low = readUInt(buffer, 16, 8, isBigEndian);
6229
- const high = readUInt(buffer, 16, 10, isBigEndian);
6230
- return (high << 16) + low;
6157
+ return (readUInt(buffer, 16, 10, isBigEndian) << 16) + low;
6231
6158
  }
6232
6159
  function nextTag(buffer) {
6233
6160
  if (buffer.length > 24) return buffer.slice(12);
@@ -6327,8 +6254,7 @@ const AVIF = {
6327
6254
  function findBox(input, type, startOffset = 0, endOffset = input.length) {
6328
6255
  for (let offset = startOffset; offset < endOffset;) {
6329
6256
  const size = readUInt32BE(input, offset);
6330
- const boxType = toUTF8String(input, offset + 4, offset + 8);
6331
- if (boxType === type) return {
6257
+ if (toUTF8String(input, offset + 4, offset + 8) === type) return {
6332
6258
  offset,
6333
6259
  size
6334
6260
  };
@@ -6428,8 +6354,7 @@ const join = function(...segments) {
6428
6354
  if (path$11.length > 0) {
6429
6355
  const pathTrailing = path$11[path$11.length - 1] === "/";
6430
6356
  const segLeading = seg[0] === "/";
6431
- const both = pathTrailing && segLeading;
6432
- if (both) path$11 += seg.slice(1);
6357
+ if (pathTrailing && segLeading) path$11 += seg.slice(1);
6433
6358
  else path$11 += pathTrailing || segLeading ? seg : `/${seg}`;
6434
6359
  } else path$11 += seg;
6435
6360
  }
@@ -6520,8 +6445,26 @@ const relative = function(from, to) {
6520
6445
  };
6521
6446
 
6522
6447
  //#endregion
6523
- //#region ../../node_modules/.pnpm/perfect-debounce@1.0.0/node_modules/perfect-debounce/dist/index.mjs
6448
+ //#region ../../node_modules/.pnpm/perfect-debounce@2.0.0/node_modules/perfect-debounce/dist/index.mjs
6524
6449
  const DEBOUNCE_DEFAULTS = { trailing: true };
6450
+ /**
6451
+ Debounce functions
6452
+ @param fn - Promise-returning/async function to debounce.
6453
+ @param wait - Milliseconds to wait before calling `fn`. Default value is 25ms
6454
+ @returns A function that delays calling `fn` until after `wait` milliseconds have elapsed since the last time it was called.
6455
+ @example
6456
+ ```
6457
+ import { debounce } from 'perfect-debounce';
6458
+ const expensiveCall = async input => input;
6459
+ const debouncedFn = debounce(expensiveCall, 200);
6460
+ for (const number of [1, 2, 3]) {
6461
+ console.log(await debouncedFn(number));
6462
+ }
6463
+ //=> 1
6464
+ //=> 2
6465
+ //=> 3
6466
+ ```
6467
+ */
6525
6468
  function debounce(fn, wait = 25, options$1 = {}) {
6526
6469
  options$1 = {
6527
6470
  ...DEBOUNCE_DEFAULTS,
@@ -6545,17 +6488,16 @@ function debounce(fn, wait = 25, options$1 = {}) {
6545
6488
  });
6546
6489
  return currentPromise;
6547
6490
  };
6548
- return function(...args) {
6549
- if (currentPromise) {
6550
- if (options$1.trailing) trailingArgs = args;
6551
- return currentPromise;
6552
- }
6491
+ const debounced = function(...args) {
6492
+ if (options$1.trailing) trailingArgs = args;
6493
+ if (currentPromise) return currentPromise;
6553
6494
  return new Promise((resolve$2) => {
6554
6495
  const shouldCallNow = !timeout && options$1.leading;
6555
6496
  clearTimeout(timeout);
6556
6497
  timeout = setTimeout(() => {
6557
6498
  timeout = null;
6558
6499
  const promise$1 = options$1.leading ? leadingValue : applyFn(this, args);
6500
+ trailingArgs = null;
6559
6501
  for (const _resolve of resolveList) _resolve(promise$1);
6560
6502
  resolveList = [];
6561
6503
  }, wait);
@@ -6565,6 +6507,26 @@ function debounce(fn, wait = 25, options$1 = {}) {
6565
6507
  } else resolveList.push(resolve$2);
6566
6508
  });
6567
6509
  };
6510
+ const _clearTimeout = (timer) => {
6511
+ if (timer) {
6512
+ clearTimeout(timer);
6513
+ timeout = null;
6514
+ }
6515
+ };
6516
+ debounced.isPending = () => !!timeout;
6517
+ debounced.cancel = () => {
6518
+ _clearTimeout(timeout);
6519
+ resolveList = [];
6520
+ trailingArgs = null;
6521
+ };
6522
+ debounced.flush = () => {
6523
+ _clearTimeout(timeout);
6524
+ if (!trailingArgs || currentPromise) return;
6525
+ const args = trailingArgs;
6526
+ trailingArgs = null;
6527
+ return applyFn(this, args);
6528
+ };
6529
+ return debounced;
6568
6530
  }
6569
6531
  async function _applyPromised(fn, _this, args) {
6570
6532
  return await fn.apply(_this, args);
@@ -6572,7 +6534,6 @@ async function _applyPromised(fn, _this, args) {
6572
6534
 
6573
6535
  //#endregion
6574
6536
  //#region src/rpc/assets.ts
6575
- var import_out = __toESM(require_out(), 1);
6576
6537
  function guessType(path$11) {
6577
6538
  if (/\.(?:png|jpe?g|jxl|gif|svg|webp|avif|ico|bmp|tiff?)$/i.test(path$11)) return "image";
6578
6539
  if (/\.(?:mp4|webm|ogv|mov|avi|flv|wmv|mpg|mpeg|mkv|3gp|3g2|ts|mts|m2ts|vob|ogm|ogx|rm|rmvb|asf|amv|divx|m4v|svi|viv|f4v|f4p|f4a|f4b)$/i.test(path$11)) return "video";
@@ -6628,8 +6589,7 @@ function getAssetsFunctions(ctx) {
6628
6589
  }
6629
6590
  async function getAssetImporters(url) {
6630
6591
  const importers = [];
6631
- const moduleGraph = server.moduleGraph;
6632
- const module$1 = await moduleGraph.getModuleByUrl(url);
6592
+ const module$1 = await server.moduleGraph.getModuleByUrl(url);
6633
6593
  if (module$1) for (const importer of module$1.importers) importers.push({
6634
6594
  url: importer.url,
6635
6595
  id: importer.id
@@ -6659,16 +6619,15 @@ function getAssetsFunctions(ctx) {
6659
6619
  } catch (e) {
6660
6620
  _imageMetaCache.set(filepath, void 0);
6661
6621
  console.error(e);
6662
- return void 0;
6622
+ return;
6663
6623
  }
6664
6624
  },
6665
6625
  async getTextAssetContent(filepath, limit = 300) {
6666
6626
  try {
6667
- const content = await fsp.readFile(filepath, "utf-8");
6668
- return content.slice(0, limit);
6627
+ return (await fsp.readFile(filepath, "utf-8")).slice(0, limit);
6669
6628
  } catch (e) {
6670
6629
  console.error(e);
6671
- return void 0;
6630
+ return;
6672
6631
  }
6673
6632
  }
6674
6633
  };
@@ -6703,7 +6662,7 @@ function getGraphFunctions(ctx) {
6703
6662
  const filteredModules = modules.filter((m) => {
6704
6663
  return m.id.match(/\.(vue|js|ts|jsx|tsx|html|json)($|\?v=)/);
6705
6664
  });
6706
- const graph = filteredModules.map((i) => {
6665
+ return filteredModules.map((i) => {
6707
6666
  function searchForVueDeps(id, seen = /* @__PURE__ */ new Set()) {
6708
6667
  if (seen.has(id)) return [];
6709
6668
  seen.add(id);
@@ -6719,7 +6678,6 @@ function getGraphFunctions(ctx) {
6719
6678
  deps: searchForVueDeps(i.id)
6720
6679
  };
6721
6680
  });
6722
- return graph;
6723
6681
  } };
6724
6682
  }
6725
6683
 
@@ -6745,8 +6703,7 @@ function removeUrlQuery(url) {
6745
6703
  //#endregion
6746
6704
  //#region src/vite.ts
6747
6705
  function getVueDevtoolsPath() {
6748
- const pluginPath = normalizePath(path.dirname(fileURLToPath(import.meta.url)));
6749
- return pluginPath.replace(/\/dist$/, "//src");
6706
+ return normalizePath(path.dirname(fileURLToPath(import.meta.url))).replace(/\/dist$/, "//src");
6750
6707
  }
6751
6708
  const toggleComboKeysMap = {
6752
6709
  option: process.platform === "darwin" ? "Option(⌥)" : "Alt(⌥)",
@@ -6817,10 +6774,7 @@ function VitePluginVueDevTools(options$1) {
6817
6774
  },
6818
6775
  async resolveId(importee) {
6819
6776
  if (importee === devtoolsOptionsImportee) return resolvedDevtoolsOptions;
6820
- else if (importee.startsWith("virtual:vue-devtools-path:")) {
6821
- const resolved = importee.replace("virtual:vue-devtools-path:", `${vueDevtoolsPath}/`);
6822
- return `${resolved}${devtoolsNextResourceSymbol}`;
6823
- }
6777
+ else if (importee.startsWith("virtual:vue-devtools-path:")) return `${importee.replace("virtual:vue-devtools-path:", `${vueDevtoolsPath}/`)}${devtoolsNextResourceSymbol}`;
6824
6778
  },
6825
6779
  async load(id) {
6826
6780
  if (id === resolvedDevtoolsOptions) return `export default ${JSON.stringify({