react-email 5.2.9 → 5.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # react-email
2
2
 
3
+ ## 5.2.10
4
+
3
5
  ## 5.2.9
4
6
 
5
7
  ### Patch Changes
@@ -571,7 +573,6 @@
571
573
  ## Why
572
574
 
573
575
  Three reasons:
574
-
575
576
  1. Better support of NextJS's latest versions
576
577
  2. Being ready for future React API deprecations
577
578
  3. Support for Suspense which allows for using async inside components
@@ -604,7 +605,6 @@
604
605
  ## Why
605
606
 
606
607
  Three reasons:
607
-
608
608
  1. Better support of NextJS's latest versions
609
609
  2. Being ready for future React API deprecations
610
610
  3. Support for Suspense which allows for using async inside components
@@ -42,16 +42,18 @@ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
42
42
  var __getOwnPropNames = Object.getOwnPropertyNames;
43
43
  var __getProtoOf = Object.getPrototypeOf;
44
44
  var __hasOwnProp = Object.prototype.hasOwnProperty;
45
- var __commonJS = (cb, mod) => function() {
46
- return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
47
- };
45
+ var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
48
46
  var __copyProps = (to, from, except, desc) => {
49
- if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i$1 = 0, n = keys.length, key; i$1 < n; i$1++) {
50
- key = keys[i$1];
51
- if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
52
- get: ((k) => from[k]).bind(null, key),
53
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
54
- });
47
+ if (from && typeof from === "object" || typeof from === "function") {
48
+ for (var keys = __getOwnPropNames(from), i$1 = 0, n = keys.length, key; i$1 < n; i$1++) {
49
+ key = keys[i$1];
50
+ if (!__hasOwnProp.call(to, key) && key !== except) {
51
+ __defProp(to, key, {
52
+ get: ((k) => from[k]).bind(null, key),
53
+ enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
54
+ });
55
+ }
56
+ }
55
57
  }
56
58
  return to;
57
59
  };
@@ -201,14 +203,14 @@ function build$2(options, isSynchronous) {
201
203
  function isRecursive(path$3, resolved, state) {
202
204
  if (state.options.useRealPaths) return isRecursiveUsingRealPaths(resolved, state);
203
205
  let parent = dirname(path$3);
204
- let depth$1 = 1;
205
- while (parent !== state.root && depth$1 < 2) {
206
+ let depth = 1;
207
+ while (parent !== state.root && depth < 2) {
206
208
  const resolvedPath = state.symlinks.get(parent);
207
- if (!!resolvedPath && (resolvedPath === resolved || resolvedPath.startsWith(resolved) || resolved.startsWith(resolvedPath))) depth$1++;
209
+ if (!!resolvedPath && (resolvedPath === resolved || resolvedPath.startsWith(resolved) || resolved.startsWith(resolvedPath))) depth++;
208
210
  else parent = dirname(parent);
209
211
  }
210
212
  state.symlinks.set(path$3, resolved);
211
- return depth$1 > 1;
213
+ return depth > 1;
212
214
  }
213
215
  function isRecursiveUsingRealPaths(resolved, state) {
214
216
  return state.visited.includes(resolved + state.options.pathSeparator);
@@ -378,7 +380,7 @@ var Walker = class {
378
380
  this.walkDirectory(this.state, this.root, this.root, this.state.options.maxDepth, this.walk);
379
381
  return this.isSynchronous ? this.callbackInvoker(this.state, null) : null;
380
382
  }
381
- walk = (entries, directoryPath, depth$1) => {
383
+ walk = (entries, directoryPath, depth) => {
382
384
  const { paths, options: { filters, resolveSymlinks: resolveSymlinks$1, excludeSymlinks, exclude, maxFiles, signal, useRealPaths, pathSeparator }, controller } = this.state;
383
385
  if (controller.aborted || signal && signal.aborted || maxFiles && paths.length > maxFiles) return;
384
386
  const files = this.getArray(this.state.paths);
@@ -391,14 +393,14 @@ var Walker = class {
391
393
  let path$3 = joinDirectoryPath(entry.name, directoryPath, this.state.options.pathSeparator);
392
394
  if (exclude && exclude(entry.name, path$3)) continue;
393
395
  this.pushDirectory(path$3, paths, filters);
394
- this.walkDirectory(this.state, path$3, path$3, depth$1 - 1, this.walk);
396
+ this.walkDirectory(this.state, path$3, path$3, depth - 1, this.walk);
395
397
  } else if (this.resolveSymlink && entry.isSymbolicLink()) {
396
398
  let path$3 = joinPathWithBasePath(entry.name, directoryPath);
397
399
  this.resolveSymlink(path$3, this.state, (stat, resolvedPath) => {
398
400
  if (stat.isDirectory()) {
399
401
  resolvedPath = normalizePath(resolvedPath, this.state.options);
400
402
  if (exclude && exclude(entry.name, useRealPaths ? resolvedPath : path$3 + pathSeparator)) return;
401
- this.walkDirectory(this.state, resolvedPath, useRealPaths ? resolvedPath : path$3 + pathSeparator, depth$1 - 1, this.walk);
403
+ this.walkDirectory(this.state, resolvedPath, useRealPaths ? resolvedPath : path$3 + pathSeparator, depth - 1, this.walk);
402
404
  } else {
403
405
  resolvedPath = useRealPaths ? resolvedPath : path$3;
404
406
  const filename = basename(resolvedPath);
@@ -483,8 +485,8 @@ var Builder = class {
483
485
  this.options.includeDirs = true;
484
486
  return this;
485
487
  }
486
- withMaxDepth(depth$1) {
487
- this.options.maxDepth = depth$1;
488
+ withMaxDepth(depth) {
489
+ this.options.maxDepth = depth;
488
490
  return this;
489
491
  }
490
492
  withMaxFiles(limit) {
@@ -572,7 +574,7 @@ var Builder = class {
572
574
 
573
575
  //#endregion
574
576
  //#region ../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/constants.js
575
- var require_constants = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/constants.js": ((exports, module) => {
577
+ var require_constants = /* @__PURE__ */ __commonJSMin(((exports, module) => {
576
578
  const WIN_SLASH = "\\\\/";
577
579
  const WIN_NO_SLASH = `[^${WIN_SLASH}]`;
578
580
  /**
@@ -626,7 +628,7 @@ var require_constants = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/p
626
628
  /**
627
629
  * POSIX Bracket Regex
628
630
  */
629
- const POSIX_REGEX_SOURCE$1 = {
631
+ const POSIX_REGEX_SOURCE = {
630
632
  alnum: "a-zA-Z0-9",
631
633
  alpha: "a-zA-Z",
632
634
  ascii: "\\x00-\\x7F",
@@ -644,7 +646,7 @@ var require_constants = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/p
644
646
  };
645
647
  module.exports = {
646
648
  MAX_LENGTH: 1024 * 64,
647
- POSIX_REGEX_SOURCE: POSIX_REGEX_SOURCE$1,
649
+ POSIX_REGEX_SOURCE,
648
650
  REGEX_BACKSLASH: /\\(?![*+?^${}(|)[\]])/g,
649
651
  REGEX_NON_SPECIAL_CHARS: /^[^@![\].,$*+?^{}()|\\/]+/,
650
652
  REGEX_SPECIAL_CHARS: /[-*+?.^${}(|)[\]]/,
@@ -733,11 +735,11 @@ var require_constants = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/p
733
735
  return win32 === true ? WINDOWS_CHARS : POSIX_CHARS;
734
736
  }
735
737
  };
736
- }) });
738
+ }));
737
739
 
738
740
  //#endregion
739
741
  //#region ../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/utils.js
740
- var require_utils$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/utils.js": ((exports) => {
742
+ var require_utils$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
741
743
  const { REGEX_BACKSLASH, REGEX_REMOVE_BACKSLASH, REGEX_SPECIAL_CHARS, REGEX_SPECIAL_CHARS_GLOBAL } = require_constants();
742
744
  exports.isObject = (val) => val !== null && typeof val === "object" && !Array.isArray(val);
743
745
  exports.hasRegexChars = (str$1) => REGEX_SPECIAL_CHARS.test(str$1);
@@ -782,13 +784,13 @@ var require_utils$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
782
784
  if (last === "") return segs[segs.length - 2];
783
785
  return last;
784
786
  };
785
- }) });
787
+ }));
786
788
 
787
789
  //#endregion
788
790
  //#region ../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/scan.js
789
- var require_scan = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/scan.js": ((exports, module) => {
790
- const utils$3 = require_utils$1();
791
- const { CHAR_ASTERISK: CHAR_ASTERISK$1, CHAR_AT, CHAR_BACKWARD_SLASH, CHAR_COMMA: CHAR_COMMA$1, CHAR_DOT, CHAR_EXCLAMATION_MARK, CHAR_FORWARD_SLASH, CHAR_LEFT_CURLY_BRACE, CHAR_LEFT_PARENTHESES, CHAR_LEFT_SQUARE_BRACKET: CHAR_LEFT_SQUARE_BRACKET$1, CHAR_PLUS, CHAR_QUESTION_MARK, CHAR_RIGHT_CURLY_BRACE, CHAR_RIGHT_PARENTHESES, CHAR_RIGHT_SQUARE_BRACKET: CHAR_RIGHT_SQUARE_BRACKET$1 } = require_constants();
791
+ var require_scan = /* @__PURE__ */ __commonJSMin(((exports, module) => {
792
+ const utils = require_utils$1();
793
+ 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();
792
794
  const isPathSeparator = (code) => {
793
795
  return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH;
794
796
  };
@@ -811,7 +813,7 @@ var require_scan = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picoma
811
813
  * @return {Object} Returns an object with tokens and regex source string.
812
814
  * @api public
813
815
  */
814
- const scan$1 = (input, options) => {
816
+ const scan = (input, options) => {
815
817
  const opts = options || {};
816
818
  const length = input.length - 1;
817
819
  const scanToEnd = opts.parts === true || opts.scanToEnd === true;
@@ -874,7 +876,7 @@ var require_scan = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picoma
874
876
  if (scanToEnd === true) continue;
875
877
  break;
876
878
  }
877
- if (braceEscaped !== true && code === CHAR_COMMA$1) {
879
+ if (braceEscaped !== true && code === CHAR_COMMA) {
878
880
  isBrace = token.isBrace = true;
879
881
  isGlob = token.isGlob = true;
880
882
  finished = true;
@@ -911,7 +913,7 @@ var require_scan = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picoma
911
913
  continue;
912
914
  }
913
915
  if (opts.noext !== true) {
914
- if ((code === CHAR_PLUS || code === CHAR_AT || code === CHAR_ASTERISK$1 || code === CHAR_QUESTION_MARK || code === CHAR_EXCLAMATION_MARK) === true && peek() === CHAR_LEFT_PARENTHESES) {
916
+ if ((code === CHAR_PLUS || code === CHAR_AT || code === CHAR_ASTERISK || code === CHAR_QUESTION_MARK || code === CHAR_EXCLAMATION_MARK) === true && peek() === CHAR_LEFT_PARENTHESES) {
915
917
  isGlob = token.isGlob = true;
916
918
  isExtglob = token.isExtglob = true;
917
919
  finished = true;
@@ -934,8 +936,8 @@ var require_scan = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picoma
934
936
  break;
935
937
  }
936
938
  }
937
- if (code === CHAR_ASTERISK$1) {
938
- if (prev === CHAR_ASTERISK$1) isGlobstar = token.isGlobstar = true;
939
+ if (code === CHAR_ASTERISK) {
940
+ if (prev === CHAR_ASTERISK) isGlobstar = token.isGlobstar = true;
939
941
  isGlob = token.isGlob = true;
940
942
  finished = true;
941
943
  if (scanToEnd === true) continue;
@@ -947,14 +949,14 @@ var require_scan = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picoma
947
949
  if (scanToEnd === true) continue;
948
950
  break;
949
951
  }
950
- if (code === CHAR_LEFT_SQUARE_BRACKET$1) {
952
+ if (code === CHAR_LEFT_SQUARE_BRACKET) {
951
953
  while (eos() !== true && (next = advance())) {
952
954
  if (next === CHAR_BACKWARD_SLASH) {
953
955
  backslashes = token.backslashes = true;
954
956
  advance();
955
957
  continue;
956
958
  }
957
- if (next === CHAR_RIGHT_SQUARE_BRACKET$1) {
959
+ if (next === CHAR_RIGHT_SQUARE_BRACKET) {
958
960
  isBracket = token.isBracket = true;
959
961
  isGlob = token.isGlob = true;
960
962
  finished = true;
@@ -1016,8 +1018,8 @@ var require_scan = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picoma
1016
1018
  if (isPathSeparator(base.charCodeAt(base.length - 1))) base = base.slice(0, -1);
1017
1019
  }
1018
1020
  if (opts.unescape === true) {
1019
- if (glob$2) glob$2 = utils$3.removeBackslashes(glob$2);
1020
- if (base && backslashes === true) base = utils$3.removeBackslashes(base);
1021
+ if (glob$2) glob$2 = utils.removeBackslashes(glob$2);
1022
+ if (base && backslashes === true) base = utils.removeBackslashes(base);
1021
1023
  }
1022
1024
  const state = {
1023
1025
  prefix,
@@ -1069,18 +1071,18 @@ var require_scan = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picoma
1069
1071
  }
1070
1072
  return state;
1071
1073
  };
1072
- module.exports = scan$1;
1073
- }) });
1074
+ module.exports = scan;
1075
+ }));
1074
1076
 
1075
1077
  //#endregion
1076
1078
  //#region ../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/parse.js
1077
- var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/parse.js": ((exports, module) => {
1078
- const constants$1 = require_constants();
1079
- const utils$2 = require_utils$1();
1079
+ var require_parse$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1080
+ const constants = require_constants();
1081
+ const utils = require_utils$1();
1080
1082
  /**
1081
1083
  * Constants
1082
1084
  */
1083
- const { MAX_LENGTH, POSIX_REGEX_SOURCE, REGEX_NON_SPECIAL_CHARS, REGEX_SPECIAL_CHARS_BACKREF, REPLACEMENTS } = constants$1;
1085
+ const { MAX_LENGTH, POSIX_REGEX_SOURCE, REGEX_NON_SPECIAL_CHARS, REGEX_SPECIAL_CHARS_BACKREF, REPLACEMENTS } = constants;
1084
1086
  /**
1085
1087
  * Helpers
1086
1088
  */
@@ -1091,7 +1093,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1091
1093
  try {
1092
1094
  new RegExp(value);
1093
1095
  } catch (ex) {
1094
- return args.map((v) => utils$2.escapeRegex(v)).join("..");
1096
+ return args.map((v) => utils.escapeRegex(v)).join("..");
1095
1097
  }
1096
1098
  return value;
1097
1099
  };
@@ -1107,7 +1109,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1107
1109
  * @param {Object} options
1108
1110
  * @return {Object}
1109
1111
  */
1110
- const parse$3 = (input, options) => {
1112
+ const parse = (input, options) => {
1111
1113
  if (typeof input !== "string") throw new TypeError("Expected a string");
1112
1114
  input = REPLACEMENTS[input] || input;
1113
1115
  const opts = { ...options };
@@ -1121,14 +1123,14 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1121
1123
  };
1122
1124
  const tokens = [bos];
1123
1125
  const capture = opts.capture ? "" : "?:";
1124
- const PLATFORM_CHARS = constants$1.globChars(opts.windows);
1125
- const EXTGLOB_CHARS = constants$1.extglobChars(PLATFORM_CHARS);
1126
- const { DOT_LITERAL: DOT_LITERAL$1, PLUS_LITERAL: PLUS_LITERAL$1, SLASH_LITERAL: SLASH_LITERAL$1, ONE_CHAR: ONE_CHAR$1, DOTS_SLASH: DOTS_SLASH$1, NO_DOT, NO_DOT_SLASH, NO_DOTS_SLASH, QMARK: QMARK$1, QMARK_NO_DOT, STAR, START_ANCHOR: START_ANCHOR$1 } = PLATFORM_CHARS;
1126
+ const PLATFORM_CHARS = constants.globChars(opts.windows);
1127
+ const EXTGLOB_CHARS = constants.extglobChars(PLATFORM_CHARS);
1128
+ const { DOT_LITERAL, PLUS_LITERAL, SLASH_LITERAL, ONE_CHAR, DOTS_SLASH, NO_DOT, NO_DOT_SLASH, NO_DOTS_SLASH, QMARK, QMARK_NO_DOT, STAR, START_ANCHOR } = PLATFORM_CHARS;
1127
1129
  const globstar = (opts$1) => {
1128
- return `(${capture}(?:(?!${START_ANCHOR$1}${opts$1.dot ? DOTS_SLASH$1 : DOT_LITERAL$1}).)*?)`;
1130
+ return `(${capture}(?:(?!${START_ANCHOR}${opts$1.dot ? DOTS_SLASH : DOT_LITERAL}).)*?)`;
1129
1131
  };
1130
1132
  const nodot = opts.dot ? "" : NO_DOT;
1131
- const qmarkNoDot = opts.dot ? QMARK$1 : QMARK_NO_DOT;
1133
+ const qmarkNoDot = opts.dot ? QMARK : QMARK_NO_DOT;
1132
1134
  let star = opts.bash === true ? globstar(opts) : STAR;
1133
1135
  if (opts.capture) star = `(${star})`;
1134
1136
  if (typeof opts.noext === "boolean") opts.noextglob = opts.noext;
@@ -1149,7 +1151,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1149
1151
  globstar: false,
1150
1152
  tokens
1151
1153
  };
1152
- input = utils$2.removePrefix(input, state);
1154
+ input = utils.removePrefix(input, state);
1153
1155
  len = input.length;
1154
1156
  const extglobs = [];
1155
1157
  const braces = [];
@@ -1235,7 +1237,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1235
1237
  push({
1236
1238
  type: type$2,
1237
1239
  value: value$1,
1238
- output: state.output ? "" : ONE_CHAR$1
1240
+ output: state.output ? "" : ONE_CHAR
1239
1241
  });
1240
1242
  push({
1241
1243
  type: "paren",
@@ -1252,7 +1254,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1252
1254
  let extglobStar = star;
1253
1255
  if (token.inner && token.inner.length > 1 && token.inner.includes("/")) extglobStar = globstar(opts);
1254
1256
  if (extglobStar !== star || eos() || /^\)+$/.test(remaining())) output = token.close = `)$))${extglobStar}`;
1255
- if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) output = token.close = `)${parse$3(rest, {
1257
+ if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) output = token.close = `)${parse(rest, {
1256
1258
  ...options,
1257
1259
  fastpaths: false
1258
1260
  }).output})${extglobStar})`;
@@ -1277,11 +1279,11 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1277
1279
  return m;
1278
1280
  }
1279
1281
  if (first === "?") {
1280
- if (esc) return esc + first + (rest ? QMARK$1.repeat(rest.length) : "");
1281
- if (index === 0) return qmarkNoDot + (rest ? QMARK$1.repeat(rest.length) : "");
1282
- return QMARK$1.repeat(chars.length);
1282
+ if (esc) return esc + first + (rest ? QMARK.repeat(rest.length) : "");
1283
+ if (index === 0) return qmarkNoDot + (rest ? QMARK.repeat(rest.length) : "");
1284
+ return QMARK.repeat(chars.length);
1283
1285
  }
1284
- if (first === ".") return DOT_LITERAL$1.repeat(chars.length);
1286
+ if (first === ".") return DOT_LITERAL.repeat(chars.length);
1285
1287
  if (first === "*") {
1286
1288
  if (esc) return esc + first + (rest ? star : "");
1287
1289
  return star;
@@ -1296,7 +1298,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1296
1298
  state.output = input;
1297
1299
  return state;
1298
1300
  }
1299
- state.output = utils$2.wrapOutput(output, state, options);
1301
+ state.output = utils.wrapOutput(output, state, options);
1300
1302
  return state;
1301
1303
  }
1302
1304
  /**
@@ -1354,7 +1356,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1354
1356
  prev.value = pre + posix$1;
1355
1357
  state.backtrack = true;
1356
1358
  advance();
1357
- if (!bos.output && tokens.indexOf(prev) === 1) bos.output = ONE_CHAR$1;
1359
+ if (!bos.output && tokens.indexOf(prev) === 1) bos.output = ONE_CHAR;
1358
1360
  continue;
1359
1361
  }
1360
1362
  }
@@ -1372,7 +1374,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1372
1374
  * until we reach the closing double quote.
1373
1375
  */
1374
1376
  if (state.quotes === 1 && value !== "\"") {
1375
- value = utils$2.escapeRegex(value);
1377
+ value = utils.escapeRegex(value);
1376
1378
  prev.value += value;
1377
1379
  append({ value });
1378
1380
  continue;
@@ -1451,8 +1453,8 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1451
1453
  if (prev.posix !== true && prevValue[0] === "^" && !prevValue.includes("/")) value = `/${value}`;
1452
1454
  prev.value += value;
1453
1455
  append({ value });
1454
- if (opts.literalBrackets === false || utils$2.hasRegexChars(prevValue)) continue;
1455
- const escaped = utils$2.escapeRegex(prev.value);
1456
+ if (opts.literalBrackets === false || utils.hasRegexChars(prevValue)) continue;
1457
+ const escaped = utils.escapeRegex(prev.value);
1456
1458
  state.output = state.output.slice(0, -prev.value.length);
1457
1459
  if (opts.literalBrackets === true) {
1458
1460
  state.output += escaped;
@@ -1561,7 +1563,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1561
1563
  push({
1562
1564
  type: "slash",
1563
1565
  value,
1564
- output: SLASH_LITERAL$1
1566
+ output: SLASH_LITERAL
1565
1567
  });
1566
1568
  continue;
1567
1569
  }
@@ -1570,7 +1572,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1570
1572
  */
1571
1573
  if (value === ".") {
1572
1574
  if (state.braces > 0 && prev.type === "dot") {
1573
- if (prev.value === ".") prev.output = DOT_LITERAL$1;
1575
+ if (prev.value === ".") prev.output = DOT_LITERAL;
1574
1576
  const brace = braces[braces.length - 1];
1575
1577
  prev.type = "dots";
1576
1578
  prev.output += value;
@@ -1582,14 +1584,14 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1582
1584
  push({
1583
1585
  type: "text",
1584
1586
  value,
1585
- output: DOT_LITERAL$1
1587
+ output: DOT_LITERAL
1586
1588
  });
1587
1589
  continue;
1588
1590
  }
1589
1591
  push({
1590
1592
  type: "dot",
1591
1593
  value,
1592
- output: DOT_LITERAL$1
1594
+ output: DOT_LITERAL
1593
1595
  });
1594
1596
  continue;
1595
1597
  }
@@ -1623,7 +1625,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1623
1625
  push({
1624
1626
  type: "qmark",
1625
1627
  value,
1626
- output: QMARK$1
1628
+ output: QMARK
1627
1629
  });
1628
1630
  continue;
1629
1631
  }
@@ -1654,7 +1656,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1654
1656
  push({
1655
1657
  type: "plus",
1656
1658
  value,
1657
- output: PLUS_LITERAL$1
1659
+ output: PLUS_LITERAL
1658
1660
  });
1659
1661
  continue;
1660
1662
  }
@@ -1667,7 +1669,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1667
1669
  }
1668
1670
  push({
1669
1671
  type: "plus",
1670
- value: PLUS_LITERAL$1
1672
+ value: PLUS_LITERAL
1671
1673
  });
1672
1674
  continue;
1673
1675
  }
@@ -1782,7 +1784,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1782
1784
  state.output = state.output.slice(0, -(prior.output + prev.output).length);
1783
1785
  prior.output = `(?:${prior.output}`;
1784
1786
  prev.type = "globstar";
1785
- prev.output = `${globstar(opts)}${SLASH_LITERAL$1}|${SLASH_LITERAL$1}${end})`;
1787
+ prev.output = `${globstar(opts)}${SLASH_LITERAL}|${SLASH_LITERAL}${end})`;
1786
1788
  prev.value += value;
1787
1789
  state.output += prior.output + prev.output;
1788
1790
  state.globstar = true;
@@ -1797,7 +1799,7 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1797
1799
  if (prior.type === "bos" && rest[0] === "/") {
1798
1800
  prev.type = "globstar";
1799
1801
  prev.value += value;
1800
- prev.output = `(?:^|${SLASH_LITERAL$1}|${globstar(opts)}${SLASH_LITERAL$1})`;
1802
+ prev.output = `(?:^|${SLASH_LITERAL}|${globstar(opts)}${SLASH_LITERAL})`;
1801
1803
  state.output = prev.output;
1802
1804
  state.globstar = true;
1803
1805
  consume(value + advance());
@@ -1845,31 +1847,31 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1845
1847
  prev.output += nodot;
1846
1848
  }
1847
1849
  if (peek() !== "*") {
1848
- state.output += ONE_CHAR$1;
1849
- prev.output += ONE_CHAR$1;
1850
+ state.output += ONE_CHAR;
1851
+ prev.output += ONE_CHAR;
1850
1852
  }
1851
1853
  }
1852
1854
  push(token);
1853
1855
  }
1854
1856
  while (state.brackets > 0) {
1855
1857
  if (opts.strictBrackets === true) throw new SyntaxError(syntaxError("closing", "]"));
1856
- state.output = utils$2.escapeLast(state.output, "[");
1858
+ state.output = utils.escapeLast(state.output, "[");
1857
1859
  decrement("brackets");
1858
1860
  }
1859
1861
  while (state.parens > 0) {
1860
1862
  if (opts.strictBrackets === true) throw new SyntaxError(syntaxError("closing", ")"));
1861
- state.output = utils$2.escapeLast(state.output, "(");
1863
+ state.output = utils.escapeLast(state.output, "(");
1862
1864
  decrement("parens");
1863
1865
  }
1864
1866
  while (state.braces > 0) {
1865
1867
  if (opts.strictBrackets === true) throw new SyntaxError(syntaxError("closing", "}"));
1866
- state.output = utils$2.escapeLast(state.output, "{");
1868
+ state.output = utils.escapeLast(state.output, "{");
1867
1869
  decrement("braces");
1868
1870
  }
1869
1871
  if (opts.strictSlashes !== true && (prev.type === "star" || prev.type === "bracket")) push({
1870
1872
  type: "maybe_slash",
1871
1873
  value: "",
1872
- output: `${SLASH_LITERAL$1}?`
1874
+ output: `${SLASH_LITERAL}?`
1873
1875
  });
1874
1876
  if (state.backtrack === true) {
1875
1877
  state.output = "";
@@ -1885,13 +1887,13 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1885
1887
  * This can significantly speed up processing and has very little downside
1886
1888
  * impact when none of the fast paths match.
1887
1889
  */
1888
- parse$3.fastpaths = (input, options) => {
1890
+ parse.fastpaths = (input, options) => {
1889
1891
  const opts = { ...options };
1890
1892
  const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
1891
1893
  const len = input.length;
1892
1894
  if (len > max) throw new SyntaxError(`Input length: ${len}, exceeds maximum allowed length: ${max}`);
1893
1895
  input = REPLACEMENTS[input] || input;
1894
- const { DOT_LITERAL: DOT_LITERAL$1, SLASH_LITERAL: SLASH_LITERAL$1, ONE_CHAR: ONE_CHAR$1, DOTS_SLASH: DOTS_SLASH$1, NO_DOT, NO_DOTS, NO_DOTS_SLASH, STAR, START_ANCHOR: START_ANCHOR$1 } = constants$1.globChars(opts.windows);
1896
+ const { DOT_LITERAL, SLASH_LITERAL, ONE_CHAR, DOTS_SLASH, NO_DOT, NO_DOTS, NO_DOTS_SLASH, STAR, START_ANCHOR } = constants.globChars(opts.windows);
1895
1897
  const nodot = opts.dot ? NO_DOTS : NO_DOT;
1896
1898
  const slashDot = opts.dot ? NO_DOTS_SLASH : NO_DOT;
1897
1899
  const capture = opts.capture ? "" : "?:";
@@ -1903,42 +1905,42 @@ var require_parse$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/pic
1903
1905
  if (opts.capture) star = `(${star})`;
1904
1906
  const globstar = (opts$1) => {
1905
1907
  if (opts$1.noglobstar === true) return star;
1906
- return `(${capture}(?:(?!${START_ANCHOR$1}${opts$1.dot ? DOTS_SLASH$1 : DOT_LITERAL$1}).)*?)`;
1908
+ return `(${capture}(?:(?!${START_ANCHOR}${opts$1.dot ? DOTS_SLASH : DOT_LITERAL}).)*?)`;
1907
1909
  };
1908
1910
  const create = (str$1) => {
1909
1911
  switch (str$1) {
1910
- case "*": return `${nodot}${ONE_CHAR$1}${star}`;
1911
- case ".*": return `${DOT_LITERAL$1}${ONE_CHAR$1}${star}`;
1912
- case "*.*": return `${nodot}${star}${DOT_LITERAL$1}${ONE_CHAR$1}${star}`;
1913
- case "*/*": return `${nodot}${star}${SLASH_LITERAL$1}${ONE_CHAR$1}${slashDot}${star}`;
1912
+ case "*": return `${nodot}${ONE_CHAR}${star}`;
1913
+ case ".*": return `${DOT_LITERAL}${ONE_CHAR}${star}`;
1914
+ case "*.*": return `${nodot}${star}${DOT_LITERAL}${ONE_CHAR}${star}`;
1915
+ case "*/*": return `${nodot}${star}${SLASH_LITERAL}${ONE_CHAR}${slashDot}${star}`;
1914
1916
  case "**": return nodot + globstar(opts);
1915
- case "**/*": return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL$1})?${slashDot}${ONE_CHAR$1}${star}`;
1916
- case "**/*.*": return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL$1})?${slashDot}${star}${DOT_LITERAL$1}${ONE_CHAR$1}${star}`;
1917
- case "**/.*": return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL$1})?${DOT_LITERAL$1}${ONE_CHAR$1}${star}`;
1917
+ case "**/*": return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${slashDot}${ONE_CHAR}${star}`;
1918
+ case "**/*.*": return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${slashDot}${star}${DOT_LITERAL}${ONE_CHAR}${star}`;
1919
+ case "**/.*": return `(?:${nodot}${globstar(opts)}${SLASH_LITERAL})?${DOT_LITERAL}${ONE_CHAR}${star}`;
1918
1920
  default: {
1919
1921
  const match = /^(.*?)\.(\w+)$/.exec(str$1);
1920
1922
  if (!match) return;
1921
1923
  const source$1 = create(match[1]);
1922
1924
  if (!source$1) return;
1923
- return source$1 + DOT_LITERAL$1 + match[2];
1925
+ return source$1 + DOT_LITERAL + match[2];
1924
1926
  }
1925
1927
  }
1926
1928
  };
1927
- let source = create(utils$2.removePrefix(input, state));
1928
- if (source && opts.strictSlashes !== true) source += `${SLASH_LITERAL$1}?`;
1929
+ let source = create(utils.removePrefix(input, state));
1930
+ if (source && opts.strictSlashes !== true) source += `${SLASH_LITERAL}?`;
1929
1931
  return source;
1930
1932
  };
1931
- module.exports = parse$3;
1932
- }) });
1933
+ module.exports = parse;
1934
+ }));
1933
1935
 
1934
1936
  //#endregion
1935
1937
  //#region ../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/picomatch.js
1936
- var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/lib/picomatch.js": ((exports, module) => {
1938
+ var require_picomatch$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1937
1939
  const scan = require_scan();
1938
- const parse$2 = require_parse$1();
1939
- const utils$1 = require_utils$1();
1940
+ const parse = require_parse$1();
1941
+ const utils = require_utils$1();
1940
1942
  const constants = require_constants();
1941
- const isObject$2 = (val) => val && typeof val === "object" && !Array.isArray(val);
1943
+ const isObject = (val) => val && typeof val === "object" && !Array.isArray(val);
1942
1944
  /**
1943
1945
  * Creates a matcher function from one or more glob patterns. The
1944
1946
  * returned function takes a string to match as its first argument,
@@ -1960,9 +1962,9 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
1960
1962
  * @return {Function=} Returns a matcher function.
1961
1963
  * @api public
1962
1964
  */
1963
- const picomatch$2 = (glob$2, options, returnState = false) => {
1965
+ const picomatch = (glob$2, options, returnState = false) => {
1964
1966
  if (Array.isArray(glob$2)) {
1965
- const fns = glob$2.map((input) => picomatch$2(input, options, returnState));
1967
+ const fns = glob$2.map((input) => picomatch(input, options, returnState));
1966
1968
  const arrayMatcher = (str$1) => {
1967
1969
  for (const isMatch of fns) {
1968
1970
  const state$1 = isMatch(str$1);
@@ -1972,11 +1974,11 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
1972
1974
  };
1973
1975
  return arrayMatcher;
1974
1976
  }
1975
- const isState = isObject$2(glob$2) && glob$2.tokens && glob$2.input;
1977
+ const isState = isObject(glob$2) && glob$2.tokens && glob$2.input;
1976
1978
  if (glob$2 === "" || typeof glob$2 !== "string" && !isState) throw new TypeError("Expected pattern to be a non-empty string");
1977
1979
  const opts = options || {};
1978
1980
  const posix$1 = opts.windows;
1979
- const regex = isState ? picomatch$2.compileRe(glob$2, options) : picomatch$2.makeRe(glob$2, options, false, true);
1981
+ const regex = isState ? picomatch.compileRe(glob$2, options) : picomatch.makeRe(glob$2, options, false, true);
1980
1982
  const state = regex.state;
1981
1983
  delete regex.state;
1982
1984
  let isIgnored = () => false;
@@ -1987,10 +1989,10 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
1987
1989
  onMatch: null,
1988
1990
  onResult: null
1989
1991
  };
1990
- isIgnored = picomatch$2(opts.ignore, ignoreOpts, returnState);
1992
+ isIgnored = picomatch(opts.ignore, ignoreOpts, returnState);
1991
1993
  }
1992
1994
  const matcher = (input, returnObject = false) => {
1993
- const { isMatch, match, output } = picomatch$2.test(input, regex, options, {
1995
+ const { isMatch, match, output } = picomatch.test(input, regex, options, {
1994
1996
  glob: glob$2,
1995
1997
  posix: posix$1
1996
1998
  });
@@ -2036,21 +2038,21 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
2036
2038
  * @return {Object} Returns an object with matching info.
2037
2039
  * @api public
2038
2040
  */
2039
- picomatch$2.test = (input, regex, options, { glob: glob$2, posix: posix$1 } = {}) => {
2041
+ picomatch.test = (input, regex, options, { glob: glob$2, posix: posix$1 } = {}) => {
2040
2042
  if (typeof input !== "string") throw new TypeError("Expected input to be a string");
2041
2043
  if (input === "") return {
2042
2044
  isMatch: false,
2043
2045
  output: ""
2044
2046
  };
2045
2047
  const opts = options || {};
2046
- const format = opts.format || (posix$1 ? utils$1.toPosixSlashes : null);
2048
+ const format = opts.format || (posix$1 ? utils.toPosixSlashes : null);
2047
2049
  let match = input === glob$2;
2048
2050
  let output = match && format ? format(input) : input;
2049
2051
  if (match === false) {
2050
2052
  output = format ? format(input) : input;
2051
2053
  match = output === glob$2;
2052
2054
  }
2053
- if (match === false || opts.capture === true) if (opts.matchBase === true || opts.basename === true) match = picomatch$2.matchBase(input, regex, options, posix$1);
2055
+ if (match === false || opts.capture === true) if (opts.matchBase === true || opts.basename === true) match = picomatch.matchBase(input, regex, options, posix$1);
2054
2056
  else match = regex.exec(output);
2055
2057
  return {
2056
2058
  isMatch: Boolean(match),
@@ -2071,8 +2073,8 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
2071
2073
  * @return {Boolean}
2072
2074
  * @api public
2073
2075
  */
2074
- picomatch$2.matchBase = (input, glob$2, options) => {
2075
- return (glob$2 instanceof RegExp ? glob$2 : picomatch$2.makeRe(glob$2, options)).test(utils$1.basename(input));
2076
+ picomatch.matchBase = (input, glob$2, options) => {
2077
+ return (glob$2 instanceof RegExp ? glob$2 : picomatch.makeRe(glob$2, options)).test(utils.basename(input));
2076
2078
  };
2077
2079
  /**
2078
2080
  * Returns true if **any** of the given glob `patterns` match the specified `string`.
@@ -2090,7 +2092,7 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
2090
2092
  * @return {Boolean} Returns true if any patterns match `str`
2091
2093
  * @api public
2092
2094
  */
2093
- picomatch$2.isMatch = (str$1, patterns, options) => picomatch$2(patterns, options)(str$1);
2095
+ picomatch.isMatch = (str$1, patterns, options) => picomatch(patterns, options)(str$1);
2094
2096
  /**
2095
2097
  * Parse a glob pattern to create the source string for a regular
2096
2098
  * expression.
@@ -2104,9 +2106,9 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
2104
2106
  * @return {Object} Returns an object with useful properties and output to be used as a regex source string.
2105
2107
  * @api public
2106
2108
  */
2107
- picomatch$2.parse = (pattern, options) => {
2108
- if (Array.isArray(pattern)) return pattern.map((p) => picomatch$2.parse(p, options));
2109
- return parse$2(pattern, {
2109
+ picomatch.parse = (pattern, options) => {
2110
+ if (Array.isArray(pattern)) return pattern.map((p) => picomatch.parse(p, options));
2111
+ return parse(pattern, {
2110
2112
  ...options,
2111
2113
  fastpaths: false
2112
2114
  });
@@ -2137,7 +2139,7 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
2137
2139
  * @return {Object} Returns an object with
2138
2140
  * @api public
2139
2141
  */
2140
- picomatch$2.scan = (input, options) => scan(input, options);
2142
+ picomatch.scan = (input, options) => scan(input, options);
2141
2143
  /**
2142
2144
  * Compile a regular expression from the `state` object returned by the
2143
2145
  * [parse()](#parse) method.
@@ -2149,14 +2151,14 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
2149
2151
  * @return {RegExp}
2150
2152
  * @api public
2151
2153
  */
2152
- picomatch$2.compileRe = (state, options, returnOutput = false, returnState = false) => {
2154
+ picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
2153
2155
  if (returnOutput === true) return state.output;
2154
2156
  const opts = options || {};
2155
2157
  const prepend = opts.contains ? "" : "^";
2156
2158
  const append = opts.contains ? "" : "$";
2157
2159
  let source = `${prepend}(?:${state.output})${append}`;
2158
2160
  if (state && state.negated === true) source = `^(?!${source}).*$`;
2159
- const regex = picomatch$2.toRegex(source, options);
2161
+ const regex = picomatch.toRegex(source, options);
2160
2162
  if (returnState === true) regex.state = state;
2161
2163
  return regex;
2162
2164
  };
@@ -2178,15 +2180,15 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
2178
2180
  * @return {RegExp} Returns a regex created from the given pattern.
2179
2181
  * @api public
2180
2182
  */
2181
- picomatch$2.makeRe = (input, options = {}, returnOutput = false, returnState = false) => {
2183
+ picomatch.makeRe = (input, options = {}, returnOutput = false, returnState = false) => {
2182
2184
  if (!input || typeof input !== "string") throw new TypeError("Expected a non-empty string");
2183
2185
  let parsed = {
2184
2186
  negated: false,
2185
2187
  fastpaths: true
2186
2188
  };
2187
- if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) parsed.output = parse$2.fastpaths(input, options);
2188
- if (!parsed.output) parsed = parse$2(input, options);
2189
- return picomatch$2.compileRe(parsed, options, returnOutput, returnState);
2189
+ if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) parsed.output = parse.fastpaths(input, options);
2190
+ if (!parsed.output) parsed = parse(input, options);
2191
+ return picomatch.compileRe(parsed, options, returnOutput, returnState);
2190
2192
  };
2191
2193
  /**
2192
2194
  * Create a regular expression from the given regex source string.
@@ -2204,7 +2206,7 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
2204
2206
  * @return {RegExp}
2205
2207
  * @api public
2206
2208
  */
2207
- picomatch$2.toRegex = (source, options) => {
2209
+ picomatch.toRegex = (source, options) => {
2208
2210
  try {
2209
2211
  const opts = options || {};
2210
2212
  return new RegExp(source, opts.flags || (opts.nocase ? "i" : ""));
@@ -2217,28 +2219,28 @@ var require_picomatch$1 = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm
2217
2219
  * Picomatch constants.
2218
2220
  * @return {Object}
2219
2221
  */
2220
- picomatch$2.constants = constants;
2222
+ picomatch.constants = constants;
2221
2223
  /**
2222
2224
  * Expose "picomatch"
2223
2225
  */
2224
- module.exports = picomatch$2;
2225
- }) });
2226
+ module.exports = picomatch;
2227
+ }));
2226
2228
 
2227
2229
  //#endregion
2228
2230
  //#region ../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/index.js
2229
- var require_picomatch = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/picomatch@4.0.3/node_modules/picomatch/index.js": ((exports, module) => {
2231
+ var require_picomatch = /* @__PURE__ */ __commonJSMin(((exports, module) => {
2230
2232
  const pico = require_picomatch$1();
2231
2233
  const utils = require_utils$1();
2232
- function picomatch$1(glob$2, options, returnState = false) {
2234
+ function picomatch(glob$2, options, returnState = false) {
2233
2235
  if (options && (options.windows === null || options.windows === void 0)) options = {
2234
2236
  ...options,
2235
2237
  windows: utils.isWindows()
2236
2238
  };
2237
2239
  return pico(glob$2, options, returnState);
2238
2240
  }
2239
- Object.assign(picomatch$1, pico);
2240
- module.exports = picomatch$1;
2241
- }) });
2241
+ Object.assign(picomatch, pico);
2242
+ module.exports = picomatch;
2243
+ }));
2242
2244
 
2243
2245
  //#endregion
2244
2246
  //#region ../../node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.mjs
@@ -2341,8 +2343,8 @@ const escapePath = isWin ? escapeWin32Path : escapePosixPath;
2341
2343
  */
2342
2344
  function isDynamicPattern(pattern, options) {
2343
2345
  if ((options === null || options === void 0 ? void 0 : options.caseSensitiveMatch) === false) return true;
2344
- const scan$2 = import_picomatch.default.scan(pattern);
2345
- return scan$2.isGlob || scan$2.negated;
2346
+ const scan = import_picomatch.default.scan(pattern);
2347
+ return scan.isGlob || scan.negated;
2346
2348
  }
2347
2349
  function log(...tasks) {
2348
2350
  console.log(`[tinyglobby ${(/* @__PURE__ */ new Date()).toLocaleTimeString("es")}]`, ...tasks);
@@ -2538,7 +2540,7 @@ function globSync(patternsOrOptions, options) {
2538
2540
  function isNothing(subject) {
2539
2541
  return typeof subject === "undefined" || subject === null;
2540
2542
  }
2541
- function isObject$1(subject) {
2543
+ function isObject(subject) {
2542
2544
  return typeof subject === "object" && subject !== null;
2543
2545
  }
2544
2546
  function toArray(sequence) {
@@ -2567,13 +2569,13 @@ function isNegativeZero(number) {
2567
2569
  }
2568
2570
  var common = {
2569
2571
  isNothing,
2570
- isObject: isObject$1,
2572
+ isObject,
2571
2573
  toArray,
2572
2574
  repeat,
2573
2575
  isNegativeZero,
2574
2576
  extend
2575
2577
  };
2576
- function formatError$1(exception$1, compact) {
2578
+ function formatError(exception$1, compact) {
2577
2579
  var where = "", message = exception$1.reason || "(unknown reason)";
2578
2580
  if (!exception$1.mark) return message;
2579
2581
  if (exception$1.mark.name) where += "in \"" + exception$1.mark.name + "\" ";
@@ -2586,14 +2588,14 @@ function YAMLException$1(reason, mark) {
2586
2588
  this.name = "YAMLException";
2587
2589
  this.reason = reason;
2588
2590
  this.mark = mark;
2589
- this.message = formatError$1(this, false);
2591
+ this.message = formatError(this, false);
2590
2592
  if (Error.captureStackTrace) Error.captureStackTrace(this, this.constructor);
2591
2593
  else this.stack = (/* @__PURE__ */ new Error()).stack || "";
2592
2594
  }
2593
2595
  YAMLException$1.prototype = Object.create(Error.prototype);
2594
2596
  YAMLException$1.prototype.constructor = YAMLException$1;
2595
2597
  YAMLException$1.prototype.toString = function toString(compact) {
2596
- return this.name + ": " + formatError$1(this, compact);
2598
+ return this.name + ": " + formatError(this, compact);
2597
2599
  };
2598
2600
  var exception = YAMLException$1;
2599
2601
  function getLine(buffer, lineStart, lineEnd, position, maxLineLength) {
@@ -4579,8 +4581,8 @@ var jsYaml = {
4579
4581
 
4580
4582
  //#endregion
4581
4583
  //#region ../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/unicode.js
4582
- var require_unicode = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/unicode.js": ((exports, module) => {
4583
- var Uni$2 = module.exports;
4584
+ var require_unicode = /* @__PURE__ */ __commonJSMin(((exports, module) => {
4585
+ var Uni = module.exports;
4584
4586
  module.exports.isWhiteSpace = function isWhiteSpace(x) {
4585
4587
  return x === " " || x === "\xA0" || x === "" || x >= " " && x <= "\r" || x === " " || x >= " " && x <= " " || x === "\u2028" || x === "\u2029" || x === " " || x === " " || x === " ";
4586
4588
  };
@@ -4594,19 +4596,19 @@ var require_unicode = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju
4594
4596
  return x === "\n" || x === "\r";
4595
4597
  };
4596
4598
  module.exports.isIdentifierStart = function isIdentifierStart(x) {
4597
- return x === "$" || x === "_" || x >= "A" && x <= "Z" || x >= "a" && x <= "z" || x >= "€" && Uni$2.NonAsciiIdentifierStart.test(x);
4599
+ return x === "$" || x === "_" || x >= "A" && x <= "Z" || x >= "a" && x <= "z" || x >= "€" && Uni.NonAsciiIdentifierStart.test(x);
4598
4600
  };
4599
4601
  module.exports.isIdentifierPart = function isIdentifierPart(x) {
4600
- return x === "$" || x === "_" || x >= "A" && x <= "Z" || x >= "a" && x <= "z" || x >= "0" && x <= "9" || x >= "€" && Uni$2.NonAsciiIdentifierPart.test(x);
4602
+ return x === "$" || x === "_" || x >= "A" && x <= "Z" || x >= "a" && x <= "z" || x >= "0" && x <= "9" || x >= "€" && Uni.NonAsciiIdentifierPart.test(x);
4601
4603
  };
4602
4604
  module.exports.NonAsciiIdentifierStart = /[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F0\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/;
4603
4605
  module.exports.NonAsciiIdentifierPart = /[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u08A0\u08A2-\u08AC\u08E4-\u08FE\u0900-\u0963\u0966-\u096F\u0971-\u0977\u0979-\u097F\u0981-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58\u0C59\u0C60-\u0C63\u0C66-\u0C6F\u0C82\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D02\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D57\u0D60-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F0\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191C\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1CD0-\u1CD2\u1CD4-\u1CF6\u1D00-\u1DE6\u1DFC-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA697\uA69F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA827\uA840-\uA873\uA880-\uA8C4\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A\uAA7B\uAA80-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE26\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/;
4604
- }) });
4606
+ }));
4605
4607
 
4606
4608
  //#endregion
4607
4609
  //#region ../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/parse.js
4608
- var require_parse = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/parse.js": ((exports, module) => {
4609
- var Uni$1 = require_unicode();
4610
+ var require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
4611
+ var Uni = require_unicode();
4610
4612
  function isHexDigit(x) {
4611
4613
  return x >= "0" && x <= "9" || x >= "A" && x <= "F" || x >= "a" && x <= "f";
4612
4614
  }
@@ -4630,7 +4632,7 @@ var require_parse = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1
4630
4632
  };
4631
4633
  function formatError(input, msg, position, lineno, column, json5) {
4632
4634
  var result = msg + " at " + (lineno + 1) + ":" + (column + 1), tmppos = position - column - 1, srcline = "", underline = "";
4633
- var isLineTerminator = json5 ? Uni$1.isLineTerminator : Uni$1.isLineTerminatorJSON;
4635
+ var isLineTerminator = json5 ? Uni.isLineTerminator : Uni.isLineTerminatorJSON;
4634
4636
  if (tmppos < position - 70) tmppos = position - 70;
4635
4637
  while (1) {
4636
4638
  var chr = input[++tmppos];
@@ -4645,14 +4647,14 @@ var require_parse = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1
4645
4647
  }
4646
4648
  return result + "\n" + srcline + "\n" + underline;
4647
4649
  }
4648
- function parse$1(input, options) {
4650
+ function parse(input, options) {
4649
4651
  var json5 = false;
4650
4652
  var cjson = false;
4651
4653
  if (options.legacy || options.mode === "json") {} else if (options.mode === "cjson") cjson = true;
4652
4654
  else if (options.mode === "json5") json5 = true;
4653
4655
  else json5 = true;
4654
- var isLineTerminator = json5 ? Uni$1.isLineTerminator : Uni$1.isLineTerminatorJSON;
4655
- var isWhiteSpace = json5 ? Uni$1.isWhiteSpace : Uni$1.isWhiteSpaceJSON;
4656
+ var isLineTerminator = json5 ? Uni.isLineTerminator : Uni.isLineTerminatorJSON;
4657
+ var isWhiteSpace = json5 ? Uni.isWhiteSpace : Uni.isWhiteSpaceJSON;
4656
4658
  var length = input.length, lineno = 0, linestart = 0, position = 0, stack = [];
4657
4659
  var tokenStart = function() {};
4658
4660
  var tokenEnd = function(v) {
@@ -4736,7 +4738,7 @@ var require_parse = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1
4736
4738
  tokenEnd(void 0, "separator");
4737
4739
  return parseArray();
4738
4740
  } else if (chr === "." || isDecDigit(chr)) return tokenEnd(parseNumber(true), "key");
4739
- else if (json5 && Uni$1.isIdentifierStart(chr) || chr === "\\" && input[position] === "u") {
4741
+ else if (json5 && Uni.isIdentifierStart(chr) || chr === "\\" && input[position] === "u") {
4740
4742
  var rollback = position - 1;
4741
4743
  var result = parseIdentifier();
4742
4744
  if (result === void 0) {
@@ -4953,12 +4955,12 @@ var require_parse = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1
4953
4955
  chr = String.fromCharCode(parseInt(input.substr(position + 1, 4), 16));
4954
4956
  position += 5;
4955
4957
  }
4956
- if (result.length) if (Uni$1.isIdentifierPart(chr)) result += chr;
4958
+ if (result.length) if (Uni.isIdentifierPart(chr)) result += chr;
4957
4959
  else {
4958
4960
  position--;
4959
4961
  return result;
4960
4962
  }
4961
- else if (Uni$1.isIdentifierStart(chr)) result += chr;
4963
+ else if (Uni.isIdentifierStart(chr)) result += chr;
4962
4964
  else return;
4963
4965
  }
4964
4966
  fail();
@@ -5024,7 +5026,7 @@ var require_parse = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1
5024
5026
  if (options.null_prototype == null) options.null_prototype = true;
5025
5027
  }
5026
5028
  try {
5027
- return parse$1(input, options);
5029
+ return parse(input, options);
5028
5030
  } catch (err) {
5029
5031
  if (err instanceof SyntaxError && err.row != null && err.column != null) {
5030
5032
  var old_err = err;
@@ -5045,11 +5047,11 @@ var require_parse = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1
5045
5047
  tokens.data = module.exports.parse(input, options);
5046
5048
  return tokens;
5047
5049
  };
5048
- }) });
5050
+ }));
5049
5051
 
5050
5052
  //#endregion
5051
5053
  //#region ../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/stringify.js
5052
- var require_stringify = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/stringify.js": ((exports, module) => {
5054
+ var require_stringify = /* @__PURE__ */ __commonJSMin(((exports, module) => {
5053
5055
  var Uni = require_unicode();
5054
5056
  if (!(function f() {}).name) Object.defineProperty((function() {}).constructor.prototype, "name", { get: function() {
5055
5057
  var name$1 = this.toString().match(/^\s*function\s*(\S*)\s*\(/)[1];
@@ -5220,15 +5222,15 @@ var require_stringify = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/j
5220
5222
  if (options._splitMax == null) options._splitMax = 70;
5221
5223
  return _stringify(object, options, 0, "");
5222
5224
  };
5223
- }) });
5225
+ }));
5224
5226
 
5225
5227
  //#endregion
5226
5228
  //#region ../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/analyze.js
5227
- var require_analyze = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/analyze.js": ((exports, module) => {
5228
- var tokenize$1 = require_parse().tokenize;
5229
+ var require_analyze = /* @__PURE__ */ __commonJSMin(((exports, module) => {
5230
+ var tokenize = require_parse().tokenize;
5229
5231
  module.exports.analyze = function analyzeJSON(input, options) {
5230
5232
  if (options == null) options = {};
5231
- if (!Array.isArray(input)) input = tokenize$1(input, options);
5233
+ if (!Array.isArray(input)) input = tokenize(input, options);
5232
5234
  var result = {
5233
5235
  has_whitespace: false,
5234
5236
  has_comments: false,
@@ -5278,11 +5280,11 @@ var require_analyze = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju
5278
5280
  });
5279
5281
  return result;
5280
5282
  };
5281
- }) });
5283
+ }));
5282
5284
 
5283
5285
  //#endregion
5284
5286
  //#region ../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/document.js
5285
- var require_document = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/document.js": ((exports, module) => {
5287
+ var require_document = /* @__PURE__ */ __commonJSMin(((exports, module) => {
5286
5288
  var assert = __require$1("assert");
5287
5289
  var tokenize = require_parse().tokenize;
5288
5290
  var stringify = require_stringify().stringify;
@@ -5561,17 +5563,17 @@ var require_document = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jj
5561
5563
  module.exports.update = function updateJSON(source, new_value, options) {
5562
5564
  return Document(source, options).update(new_value).toString();
5563
5565
  };
5564
- }) });
5566
+ }));
5565
5567
 
5566
5568
  //#endregion
5567
5569
  //#region ../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/utils.js
5568
- var require_utils = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/utils.js": ((exports, module) => {
5570
+ var require_utils = /* @__PURE__ */ __commonJSMin(((exports, module) => {
5569
5571
  var FS = __require$1("fs");
5570
- var jju$1 = require_jju();
5572
+ var jju = require_jju();
5571
5573
  module.exports.register = function() {
5572
5574
  var r = __require$1, e = "extensions";
5573
5575
  r[e][".json5"] = function(m, f) {
5574
- m.exports = jju$1.parse(FS.readFileSync(f, "utf8"));
5576
+ m.exports = jju.parse(FS.readFileSync(f, "utf8"));
5575
5577
  };
5576
5578
  };
5577
5579
  module.exports.patch_JSON_parse = function() {
@@ -5596,11 +5598,11 @@ var require_utils = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1
5596
5598
  throw Error("this function is removed, use express-json5 instead");
5597
5599
  };
5598
5600
  };
5599
- }) });
5601
+ }));
5600
5602
 
5601
5603
  //#endregion
5602
5604
  //#region ../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/index.js
5603
- var require_jju = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/index.js": ((exports, module) => {
5605
+ var require_jju = /* @__PURE__ */ __commonJSMin(((exports, module) => {
5604
5606
  module.exports.__defineGetter__("parse", function() {
5605
5607
  return require_parse().parse;
5606
5608
  });
@@ -5619,7 +5621,7 @@ var require_jju = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/jju@1.4
5619
5621
  module.exports.__defineGetter__("utils", function() {
5620
5622
  return require_utils();
5621
5623
  });
5622
- }) });
5624
+ }));
5623
5625
  /**package
5624
5626
  { "name": "jju",
5625
5627
  "version": "0.0.0",
@@ -6360,9 +6362,9 @@ const getEmailsDirectoryMetadata = async (absolutePathToEmailsDirectory, keepFil
6360
6362
  //#region package.json
6361
6363
  var package_default = {
6362
6364
  name: "react-email",
6363
- version: "5.2.9",
6365
+ version: "5.2.10",
6364
6366
  description: "A live preview of your emails right in your browser.",
6365
- bin: { "email": "./dist/index.js" },
6367
+ bin: { "email": "./dist/index.mjs" },
6366
6368
  type: "module",
6367
6369
  scripts: {
6368
6370
  "build": "tsdown",
@@ -6380,36 +6382,36 @@ var package_default = {
6380
6382
  keywords: ["react", "email"],
6381
6383
  engines: { "node": ">=20.0.0" },
6382
6384
  dependencies: {
6383
- "@babel/parser": "^7.27.0",
6384
- "@babel/traverse": "^7.27.0",
6385
+ "@babel/parser": "catalog:",
6386
+ "@babel/traverse": "catalog:",
6385
6387
  "chokidar": "^4.0.3",
6386
- "commander": "^13.0.0",
6388
+ "commander": "catalog:",
6387
6389
  "conf": "^15.0.2",
6388
6390
  "debounce": "^2.0.0",
6389
- "esbuild": "^0.25.0",
6390
- "glob": "^11.0.0",
6391
+ "esbuild": "catalog:",
6392
+ "glob": "^13.0.6",
6391
6393
  "jiti": "2.4.2",
6392
- "log-symbols": "^7.0.0",
6394
+ "log-symbols": "catalog:",
6393
6395
  "mime-types": "^3.0.0",
6394
6396
  "normalize-path": "^3.0.0",
6395
- "nypm": "0.6.2",
6396
- "ora": "^8.0.0",
6397
+ "nypm": "catalog:",
6398
+ "ora": "catalog:",
6397
6399
  "prompts": "2.4.2",
6398
6400
  "socket.io": "^4.8.1",
6399
6401
  "tsconfig-paths": "4.2.0"
6400
6402
  },
6401
6403
  devDependencies: {
6402
6404
  "@react-email/components": "workspace:*",
6403
- "@types/babel__core": "7.20.5",
6404
- "@types/babel__traverse": "7.20.7",
6405
- "@types/mime-types": "2.1.4",
6405
+ "@types/babel__core": "catalog:",
6406
+ "@types/babel__traverse": "catalog:",
6407
+ "@types/mime-types": "catalog:",
6406
6408
  "@types/prompts": "2.4.9",
6407
- "next": "16.1.5",
6408
- "react": "19.0.0",
6409
- "react-dom": "19.0.0",
6409
+ "next": "catalog:",
6410
+ "react": "catalog:",
6411
+ "react-dom": "catalog:",
6410
6412
  "shlex": "3.0.0",
6411
- "tsx": "4.21.0",
6412
- "typescript": "5.8.3"
6413
+ "tsx": "catalog:",
6414
+ "typescript": "catalog:"
6413
6415
  }
6414
6416
  };
6415
6417
 
@@ -6859,6 +6861,10 @@ const conf = new Conf({
6859
6861
 
6860
6862
  //#endregion
6861
6863
  //#region src/utils/style-text.ts
6864
+ /**
6865
+ * Centralized fallback for Node versions (<20.12.0) without util.styleText.
6866
+ * Returns the original text when styleText is unavailable.
6867
+ */
6862
6868
  const styleText = nodeUtil.styleText ? nodeUtil.styleText : (_, text) => text;
6863
6869
 
6864
6870
  //#endregion
@@ -7043,11 +7049,11 @@ const SYMBOLS = {
7043
7049
  LAST_BRANCH: "└── ",
7044
7050
  VERTICAL: "│ "
7045
7051
  };
7046
- const getTreeLines = async (dirPath, depth$1, currentDepth = 0) => {
7052
+ const getTreeLines = async (dirPath, depth, currentDepth = 0) => {
7047
7053
  const base = process.cwd();
7048
7054
  const dirFullpath = path.resolve(base, dirPath);
7049
7055
  let lines = [path.basename(dirFullpath)];
7050
- if ((await promises.stat(dirFullpath)).isDirectory() && currentDepth < depth$1) {
7056
+ if ((await promises.stat(dirFullpath)).isDirectory() && currentDepth < depth) {
7051
7057
  const childDirents = await promises.readdir(dirFullpath, { withFileTypes: true });
7052
7058
  childDirents.sort((a, b) => {
7053
7059
  if (a.isDirectory() && b.isFile()) return -1;
@@ -7061,15 +7067,15 @@ const getTreeLines = async (dirPath, depth$1, currentDepth = 0) => {
7061
7067
  const verticalSymbol = isLast ? SYMBOLS.INDENT : SYMBOLS.VERTICAL;
7062
7068
  if (dirent.isFile()) lines.push(`${branchingSymbol}${dirent.name}`);
7063
7069
  else {
7064
- const treeLinesForSubDirectory = await getTreeLines(path.join(dirFullpath, dirent.name), depth$1, currentDepth + 1);
7070
+ const treeLinesForSubDirectory = await getTreeLines(path.join(dirFullpath, dirent.name), depth, currentDepth + 1);
7065
7071
  lines = lines.concat(treeLinesForSubDirectory.map((line, index) => index === 0 ? `${branchingSymbol}${line}` : `${verticalSymbol}${line}`));
7066
7072
  }
7067
7073
  }
7068
7074
  }
7069
7075
  return lines;
7070
7076
  };
7071
- const tree = async (dirPath, depth$1) => {
7072
- return (await getTreeLines(dirPath, depth$1)).join(os.EOL);
7077
+ const tree = async (dirPath, depth) => {
7078
+ return (await getTreeLines(dirPath, depth)).join(os.EOL);
7073
7079
  };
7074
7080
 
7075
7081
  //#endregion
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "react-email",
3
- "version": "5.2.9",
3
+ "version": "5.2.10",
4
4
  "description": "A live preview of your emails right in your browser.",
5
5
  "bin": {
6
- "email": "./dist/index.js"
6
+ "email": "./dist/index.mjs"
7
7
  },
8
8
  "type": "module",
9
9
  "license": "MIT",
@@ -20,14 +20,14 @@
20
20
  "node": ">=20.0.0"
21
21
  },
22
22
  "dependencies": {
23
- "@babel/parser": "^7.27.0",
24
- "@babel/traverse": "^7.27.0",
23
+ "@babel/parser": "7.27.0",
24
+ "@babel/traverse": "7.27.0",
25
25
  "chokidar": "^4.0.3",
26
26
  "commander": "^13.0.0",
27
27
  "conf": "^15.0.2",
28
28
  "debounce": "^2.0.0",
29
- "esbuild": "^0.25.0",
30
- "glob": "^11.0.0",
29
+ "esbuild": "0.27.3",
30
+ "glob": "^13.0.6",
31
31
  "jiti": "2.4.2",
32
32
  "log-symbols": "^7.0.0",
33
33
  "mime-types": "^3.0.0",
@@ -43,13 +43,13 @@
43
43
  "@types/babel__traverse": "7.20.7",
44
44
  "@types/mime-types": "2.1.4",
45
45
  "@types/prompts": "2.4.9",
46
- "next": "16.1.5",
46
+ "next": "16.1.7",
47
47
  "react": "19.0.0",
48
48
  "react-dom": "19.0.0",
49
49
  "shlex": "3.0.0",
50
50
  "tsx": "4.21.0",
51
- "typescript": "5.8.3",
52
- "@react-email/components": "1.0.8"
51
+ "typescript": "5.9.3",
52
+ "@react-email/components": "1.0.10"
53
53
  },
54
54
  "scripts": {
55
55
  "build": "tsdown",
@@ -1,6 +1,4 @@
1
- import { existsSync, promises as fs } from 'node:fs';
2
1
  import http from 'node:http';
3
- import { createRequire } from 'node:module';
4
2
  import os from 'node:os';
5
3
  import path from 'node:path';
6
4
  import url from 'node:url';