@modern-js/entry-generator 3.1.30 → 3.1.32

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 (2) hide show
  1. package/dist/index.js +136 -195
  2. package/package.json +7 -7
package/dist/index.js CHANGED
@@ -35189,6 +35189,8 @@ var require_chainId = __commonJS({
35189
35189
  CSS_MODULES_TS: "css-modules-typescript",
35190
35190
  /** mini-css-extract-plugin.loader */
35191
35191
  MINI_CSS_EXTRACT: "mini-css-extract",
35192
+ /** resolve-url-loader */
35193
+ RESOLVE_URL_LOADER_FOR_SASS: "resolve-url-loader",
35192
35194
  /** builder-plugin-image-compress.loader */
35193
35195
  IMAGE_COMPRESS: "image-compress",
35194
35196
  /** builder-plugin-image-compress svgo-loader */
@@ -35236,6 +35238,14 @@ var require_chainId = __commonJS({
35236
35238
  HTML_NONCE: "html-nonce",
35237
35239
  /** HtmlCrossOriginPlugin */
35238
35240
  HTML_CROSS_ORIGIN: "html-cross-origin",
35241
+ /** htmlPreconnectPlugin */
35242
+ HTML_PRECONNECT: "html-preconnect-plugin",
35243
+ /** htmlDnsPrefetchPlugin */
35244
+ HTML_DNS_PREFETCH: "html-dns-prefetch-plugin",
35245
+ /** htmlPrefetchPlugin */
35246
+ HTML_PREFETCH: "html-prefetch-plugin",
35247
+ /** htmlPreloadPlugin */
35248
+ HTML_PRELOAD: "html-preload-plugin",
35239
35249
  /** MiniCssExtractPlugin */
35240
35250
  MINI_CSS_EXTRACT: "mini-css-extract",
35241
35251
  /** VueLoaderPlugin */
@@ -35399,7 +35409,7 @@ var require_constants = __commonJS({
35399
35409
  var API_DIR = "api";
35400
35410
  var SERVER_DIR = "server";
35401
35411
  var SHARED_DIR = "shared";
35402
- var CONFIG_CACHE_DIR = "./node_modules/.cache/node-bundle-require";
35412
+ var CONFIG_CACHE_DIR = "./node_modules/.cache/bundle-require";
35403
35413
  var CONFIG_FILE_EXTENSIONS = [
35404
35414
  ".js",
35405
35415
  ".ts",
@@ -35706,6 +35716,7 @@ var require_config = __commonJS({
35706
35716
  return isSingleEntry2;
35707
35717
  }
35708
35718
  });
35719
+ var _constants = require_constants();
35709
35720
  var _type = require_type();
35710
35721
  var isSSR = (config) => {
35711
35722
  var _server, _server1;
@@ -35743,12 +35754,12 @@ var require_config = __commonJS({
35743
35754
  return typeof ((_config_runtime = config.runtime) === null || _config_runtime === void 0 ? void 0 : _config_runtime.router) !== "boolean" && ((_config = config) === null || _config === void 0 ? void 0 : (_config_runtime1 = _config.runtime) === null || _config_runtime1 === void 0 ? void 0 : (_config_runtime_router = _config_runtime1.router) === null || _config_runtime_router === void 0 ? void 0 : _config_runtime_router.mode) === "react-router-5";
35744
35755
  };
35745
35756
  var isSSGEntry = (config, entryName, entrypoints) => {
35746
- var _ssgConfig, _ssgConfig1;
35757
+ var _config_source, _ssgConfig, _ssgConfig1;
35747
35758
  const ssgConfig = config.output.ssg;
35748
- const useSSG = isSingleEntry2(entrypoints) ? Boolean(ssgConfig) : ssgConfig === true || typeof ((_ssgConfig = ssgConfig) === null || _ssgConfig === void 0 ? void 0 : _ssgConfig[0]) === "function" || Boolean((_ssgConfig1 = ssgConfig) === null || _ssgConfig1 === void 0 ? void 0 : _ssgConfig1[entryName]);
35759
+ const useSSG = isSingleEntry2(entrypoints, (_config_source = config.source) === null || _config_source === void 0 ? void 0 : _config_source.mainEntryName) ? Boolean(ssgConfig) : ssgConfig === true || typeof ((_ssgConfig = ssgConfig) === null || _ssgConfig === void 0 ? void 0 : _ssgConfig[0]) === "function" || Boolean((_ssgConfig1 = ssgConfig) === null || _ssgConfig1 === void 0 ? void 0 : _ssgConfig1[entryName]);
35749
35760
  return useSSG;
35750
35761
  };
35751
- var isSingleEntry2 = (entrypoints) => entrypoints.length === 1 && entrypoints[0].entryName === "main";
35762
+ var isSingleEntry2 = (entrypoints, mainEntryName = _constants.MAIN_ENTRY_NAME) => entrypoints.length === 1 && entrypoints[0].entryName === mainEntryName;
35752
35763
  }
35753
35764
  });
35754
35765
 
@@ -36295,6 +36306,9 @@ var require_logger = __commonJS({
36295
36306
  });
36296
36307
  }
36297
36308
  _export(exports, {
36309
+ isErrorStackMessage: function() {
36310
+ return isErrorStackMessage;
36311
+ },
36298
36312
  Logger: function() {
36299
36313
  return Logger;
36300
36314
  },
@@ -36345,6 +36359,9 @@ var require_logger = __commonJS({
36345
36359
  displayLabel: true,
36346
36360
  uppercaseLabel: false
36347
36361
  };
36362
+ var errorStackRegExp = /^\s*at\s.*:\d+:\d+[\s)]*$/;
36363
+ var anonymousErrorStackRegExp = /^\s*at\s.*\(<anonymous>\)$/;
36364
+ var isErrorStackMessage = (message) => errorStackRegExp.test(message) || anonymousErrorStackRegExp.test(message);
36348
36365
  var Logger = class {
36349
36366
  _log(type, message, ...args) {
36350
36367
  if (message === void 0 || message === null) {
@@ -36370,6 +36387,9 @@ ${_chalk.default.grey(rest.join("\n"))}`;
36370
36387
  } else {
36371
36388
  text = message.message;
36372
36389
  }
36390
+ } else if (logType.level === "error" && typeof message === "string") {
36391
+ const lines = message.split("\n");
36392
+ text = lines.map((line) => isErrorStackMessage(line) ? _chalk.default.gray(line) : line).join("\n");
36373
36393
  } else {
36374
36394
  text = `${message}`;
36375
36395
  }
@@ -36551,15 +36571,6 @@ var require_path = __commonJS({
36551
36571
  getTemplatePath: function() {
36552
36572
  return getTemplatePath;
36553
36573
  },
36554
- compilePathMatcherRegExp: function() {
36555
- return compilePathMatcherRegExp;
36556
- },
36557
- _joinPathParts: function() {
36558
- return _joinPathParts;
36559
- },
36560
- upwardPaths: function() {
36561
- return upwardPaths;
36562
- },
36563
36574
  getRealTemporaryDirectory: function() {
36564
36575
  return getRealTemporaryDirectory;
36565
36576
  },
@@ -36597,20 +36608,6 @@ var require_path = __commonJS({
36597
36608
  parts.push((0, _compiled.nanoid)());
36598
36609
  return _path.default.resolve(...parts);
36599
36610
  };
36600
- function compilePathMatcherRegExp(match) {
36601
- if (typeof match !== "string") {
36602
- return match;
36603
- }
36604
- const escaped = _compiled.lodash.escapeRegExp(match);
36605
- return new RegExp(`(?<=\\W|^)${escaped}(?=\\W|$)`);
36606
- }
36607
- var _joinPathParts = (_part, i, parts) => (0, _compiled.lodash)(parts).filter((part) => ![
36608
- "/",
36609
- "\\"
36610
- ].includes(part)).tap((parts2) => parts2.unshift("")).slice(0, i + 2).join("/");
36611
- function upwardPaths(start) {
36612
- return (0, _compiled.lodash)(start).split(/[/\\]/).filter(Boolean).map(_joinPathParts).reverse().push("/").value();
36613
- }
36614
36611
  function getRealTemporaryDirectory() {
36615
36612
  let ret = null;
36616
36613
  try {
@@ -36862,84 +36859,6 @@ var require_monorepo = __commonJS({
36862
36859
  }
36863
36860
  });
36864
36861
 
36865
- // ../../../toolkit/utils/dist/cjs/cli/pathSerializer.js
36866
- var require_pathSerializer = __commonJS({
36867
- "../../../toolkit/utils/dist/cjs/cli/pathSerializer.js"(exports) {
36868
- "use strict";
36869
- Object.defineProperty(exports, "__esModule", {
36870
- value: true
36871
- });
36872
- function _export(target, all) {
36873
- for (var name in all)
36874
- Object.defineProperty(target, name, {
36875
- enumerable: true,
36876
- get: all[name]
36877
- });
36878
- }
36879
- _export(exports, {
36880
- matchUpwardPathsAsUnknown: function() {
36881
- return matchUpwardPathsAsUnknown;
36882
- },
36883
- applyPathMatcher: function() {
36884
- return applyPathMatcher;
36885
- },
36886
- applyMatcherReplacement: function() {
36887
- return applyMatcherReplacement;
36888
- },
36889
- createDefaultPathMatchers: function() {
36890
- return createDefaultPathMatchers;
36891
- }
36892
- });
36893
- var _interop_require_default = require_interop_require_default();
36894
- var _os = /* @__PURE__ */ _interop_require_default._(require("os"));
36895
- var _lodash = /* @__PURE__ */ _interop_require_default._(require_lodash3());
36896
- var _path = require_path();
36897
- var matchUpwardPathsAsUnknown = (p) => (0, _lodash.default)((0, _path.upwardPaths)((0, _path.normalizeToPosixPath)(p))).map((match) => ({
36898
- match,
36899
- mark: "unknown"
36900
- })).slice(1, -1).value();
36901
- function applyPathMatcher(matcher, str, options = {}) {
36902
- const regex2 = (0, _path.compilePathMatcherRegExp)(matcher.match);
36903
- const replacer = (substring, ...args) => {
36904
- if (options.minPartials && (0, _path.splitPathString)(substring).length < options.minPartials) {
36905
- return substring;
36906
- }
36907
- const ret = typeof matcher.mark === "string" ? matcher.mark : matcher.mark(substring, ...args);
36908
- return `<${_lodash.default.snakeCase(ret).toUpperCase()}>`;
36909
- };
36910
- return str.replace(regex2, replacer);
36911
- }
36912
- function applyMatcherReplacement(matchers, str, options = {}) {
36913
- return matchers.reduce((ret, matcher) => {
36914
- return applyPathMatcher(matcher, ret, options);
36915
- }, str);
36916
- }
36917
- var createDefaultPathMatchers = (root) => {
36918
- const ret = [
36919
- {
36920
- match: RegExp("(?<=\\/)(\\.pnpm\\/.+?\\/node_modules)(?=\\/)"),
36921
- mark: "pnpmInner"
36922
- }
36923
- ];
36924
- const tmpdir = (0, _path.getRealTemporaryDirectory)();
36925
- tmpdir && ret.push({
36926
- match: tmpdir,
36927
- mark: "temp"
36928
- });
36929
- ret.push({
36930
- match: _os.default.tmpdir(),
36931
- mark: "temp"
36932
- });
36933
- ret.push({
36934
- match: _os.default.homedir(),
36935
- mark: "home"
36936
- });
36937
- ret.push(...matchUpwardPathsAsUnknown(root));
36938
- return ret;
36939
- };
36940
- }
36941
- });
36942
-
36943
36862
  // ../../../toolkit/utils/dist/cjs/cli/port.js
36944
36863
  var require_port = __commonJS({
36945
36864
  "../../../toolkit/utils/dist/cjs/cli/port.js"(exports) {
@@ -37074,19 +36993,19 @@ var require_prettyInstructions = __commonJS({
37074
36993
  }, []);
37075
36994
  };
37076
36995
  var prettyInstructions = (appContext, config) => {
37077
- var _appContext_builder_context_devServer, _appContext_builder, _config_dev;
36996
+ var _appContext_builder_context_devServer, _appContext_builder, _config_dev, _config_source;
37078
36997
  const { entrypoints, serverRoutes, port, apiOnly, checkedEntries } = appContext;
37079
36998
  const isHttps = (0, _is.isDev)() && ((_appContext_builder = appContext.builder) === null || _appContext_builder === void 0 ? void 0 : (_appContext_builder_context_devServer = _appContext_builder.context.devServer) === null || _appContext_builder_context_devServer === void 0 ? void 0 : _appContext_builder_context_devServer.https);
37080
36999
  const urls = getAddressUrls(isHttps ? "https" : "http", port, (_config_dev = config.dev) === null || _config_dev === void 0 ? void 0 : _config_dev.host);
37081
37000
  const routes = !apiOnly ? serverRoutes.filter((route) => route.entryName) : serverRoutes;
37082
37001
  let message = "App running at:\n\n";
37083
- if ((0, _is.isSingleEntry)(entrypoints) || apiOnly) {
37002
+ if ((0, _is.isSingleEntry)(entrypoints, (_config_source = config.source) === null || _config_source === void 0 ? void 0 : _config_source.mainEntryName) || apiOnly) {
37084
37003
  message += urls.map(({ label, url }) => ` ${_compiled.chalk.bold(`> ${label.padEnd(10)}`)}${_compiled.chalk.cyanBright(normalizeUrl(`${url}/${routes[0].urlPath}`))}
37085
37004
  `).join("");
37086
37005
  } else {
37087
37006
  const maxNameLength = Math.max(...routes.map((r) => r.entryName.length));
37088
37007
  urls.forEach(({ label, url }) => {
37089
- message += ` ${_compiled.chalk.bold(`> ${label}`)}
37008
+ message += ` ${_compiled.chalk.bold(`> ${label}`)}${routes.length === 0 ? _compiled.chalk.cyanBright(url) : ""}
37090
37009
  `;
37091
37010
  routes.forEach(({ entryName, urlPath, isSSR }) => {
37092
37011
  if (!checkedEntries.includes(entryName)) {
@@ -37335,7 +37254,6 @@ var require_cli = __commonJS({
37335
37254
  _export_star._(require_monorepo(), exports);
37336
37255
  _export_star._(require_package2(), exports);
37337
37256
  _export_star._(require_path(), exports);
37338
- _export_star._(require_pathSerializer(), exports);
37339
37257
  _export_star._(require_port(), exports);
37340
37258
  _export_star._(require_prettyInstructions(), exports);
37341
37259
  _export_star._(require_require(), exports);
@@ -37358,9 +37276,9 @@ var require_cjs = __commonJS({
37358
37276
  }
37359
37277
  });
37360
37278
 
37361
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/import-lazy/index.js
37279
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/import-lazy/index.js
37362
37280
  var require_import_lazy2 = __commonJS({
37363
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/import-lazy/index.js"(exports, module2) {
37281
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/import-lazy/index.js"(exports, module2) {
37364
37282
  (() => {
37365
37283
  "use strict";
37366
37284
  var e = { 42: (e2) => {
@@ -37406,9 +37324,9 @@ var require_import_lazy2 = __commonJS({
37406
37324
  }
37407
37325
  });
37408
37326
 
37409
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/fs-extra/index.js
37327
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/fs-extra/index.js
37410
37328
  var require_fs_extra2 = __commonJS({
37411
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/fs-extra/index.js"(exports, module2) {
37329
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/fs-extra/index.js"(exports, module2) {
37412
37330
  (() => {
37413
37331
  var e = { 571: (e2, t2, r2) => {
37414
37332
  "use strict";
@@ -39661,9 +39579,9 @@ var require_fs_extra2 = __commonJS({
39661
39579
  }
39662
39580
  });
39663
39581
 
39664
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/chalk/index.js
39582
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/chalk/index.js
39665
39583
  var require_chalk2 = __commonJS({
39666
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/chalk/index.js"(exports, module2) {
39584
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/chalk/index.js"(exports, module2) {
39667
39585
  (() => {
39668
39586
  var e = { 44: (e2, t2, n2) => {
39669
39587
  "use strict";
@@ -40899,9 +40817,9 @@ var require_chalk2 = __commonJS({
40899
40817
  }
40900
40818
  });
40901
40819
 
40902
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/strip-ansi/index.js
40820
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/strip-ansi/index.js
40903
40821
  var require_strip_ansi2 = __commonJS({
40904
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/strip-ansi/index.js"(exports, module2) {
40822
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/strip-ansi/index.js"(exports, module2) {
40905
40823
  (() => {
40906
40824
  "use strict";
40907
40825
  var e = { 275: (e2) => {
@@ -40938,9 +40856,9 @@ var require_strip_ansi2 = __commonJS({
40938
40856
  }
40939
40857
  });
40940
40858
 
40941
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/ora/index.js
40859
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/ora/index.js
40942
40860
  var require_ora2 = __commonJS({
40943
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/ora/index.js"(exports, module2) {
40861
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/ora/index.js"(exports, module2) {
40944
40862
  (() => {
40945
40863
  var e = { 695: (e2, t2, r2) => {
40946
40864
  "use strict";
@@ -44652,9 +44570,9 @@ var require_ora2 = __commonJS({
44652
44570
  }
44653
44571
  });
44654
44572
 
44655
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/glob/index.js
44573
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/glob/index.js
44656
44574
  var require_glob2 = __commonJS({
44657
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/glob/index.js"(exports, module2) {
44575
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/glob/index.js"(exports, module2) {
44658
44576
  (() => {
44659
44577
  var t = { 155: (t2) => {
44660
44578
  "use strict";
@@ -46955,9 +46873,9 @@ var require_glob2 = __commonJS({
46955
46873
  }
46956
46874
  });
46957
46875
 
46958
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/js-yaml/index.js
46876
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/js-yaml/index.js
46959
46877
  var require_js_yaml2 = __commonJS({
46960
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/js-yaml/index.js"(exports, module2) {
46878
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/js-yaml/index.js"(exports, module2) {
46961
46879
  (() => {
46962
46880
  "use strict";
46963
46881
  var e = { 509: (e2, t2, r2) => {
@@ -49468,9 +49386,9 @@ var require_js_yaml2 = __commonJS({
49468
49386
  }
49469
49387
  });
49470
49388
 
49471
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/debug/index.js
49389
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/debug/index.js
49472
49390
  var require_debug2 = __commonJS({
49473
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/debug/index.js"(exports, module2) {
49391
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/debug/index.js"(exports, module2) {
49474
49392
  (() => {
49475
49393
  var e = { 20: (e2, t2, r2) => {
49476
49394
  t2.formatArgs = formatArgs;
@@ -50034,9 +49952,9 @@ var require_debug2 = __commonJS({
50034
49952
  }
50035
49953
  });
50036
49954
 
50037
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/slash/index.js
49955
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/slash/index.js
50038
49956
  var require_slash2 = __commonJS({
50039
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/slash/index.js"(exports, module2) {
49957
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/slash/index.js"(exports, module2) {
50040
49958
  (() => {
50041
49959
  "use strict";
50042
49960
  var e = { 398: (e2) => {
@@ -50074,9 +49992,9 @@ var require_slash2 = __commonJS({
50074
49992
  }
50075
49993
  });
50076
49994
 
50077
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/execa/index.js
49995
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/execa/index.js
50078
49996
  var require_execa2 = __commonJS({
50079
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/execa/index.js"(exports, module2) {
49997
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/execa/index.js"(exports, module2) {
50080
49998
  (() => {
50081
49999
  var e = { 328: (e2, t2, n2) => {
50082
50000
  "use strict";
@@ -51391,9 +51309,9 @@ ${o.message}` : x;
51391
51309
  }
51392
51310
  });
51393
51311
 
51394
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/json5/index.js
51312
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/json5/index.js
51395
51313
  var require_json52 = __commonJS({
51396
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/json5/index.js"(exports, module2) {
51314
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/json5/index.js"(exports, module2) {
51397
51315
  (() => {
51398
51316
  var u = { 361: (u2, D2, e2) => {
51399
51317
  const r = e2(108);
@@ -52411,9 +52329,9 @@ var require_json52 = __commonJS({
52411
52329
  }
52412
52330
  });
52413
52331
 
52414
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/upath/index.js
52332
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/upath/index.js
52415
52333
  var require_upath2 = __commonJS({
52416
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/upath/index.js"(exports, module2) {
52334
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/upath/index.js"(exports, module2) {
52417
52335
  (() => {
52418
52336
  var e = { 472: (e2, t2, r2) => {
52419
52337
  var n = "2.0.1";
@@ -52598,9 +52516,9 @@ var require_upath2 = __commonJS({
52598
52516
  }
52599
52517
  });
52600
52518
 
52601
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/pkg-up/index.js
52519
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/pkg-up/index.js
52602
52520
  var require_pkg_up2 = __commonJS({
52603
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/pkg-up/index.js"(exports, module2) {
52521
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/pkg-up/index.js"(exports, module2) {
52604
52522
  (() => {
52605
52523
  "use strict";
52606
52524
  var e = { 485: (e2, r2, n2) => {
@@ -52765,9 +52683,9 @@ var require_pkg_up2 = __commonJS({
52765
52683
  }
52766
52684
  });
52767
52685
 
52768
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/nanoid/index.js
52686
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/nanoid/index.js
52769
52687
  var require_nanoid2 = __commonJS({
52770
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/nanoid/index.js"(exports, module2) {
52688
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/nanoid/index.js"(exports, module2) {
52771
52689
  (() => {
52772
52690
  var e = { 113: (e2) => {
52773
52691
  "use strict";
@@ -52847,9 +52765,9 @@ var require_nanoid2 = __commonJS({
52847
52765
  }
52848
52766
  });
52849
52767
 
52850
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/semver/index.js
52768
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/semver/index.js
52851
52769
  var require_semver2 = __commonJS({
52852
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/semver/index.js"(exports, module2) {
52770
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/semver/index.js"(exports, module2) {
52853
52771
  (() => {
52854
52772
  var e = { 844: (e2, t2, r2) => {
52855
52773
  "use strict";
@@ -54869,9 +54787,9 @@ var require_semver2 = __commonJS({
54869
54787
  }
54870
54788
  });
54871
54789
 
54872
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/dotenv/index.js
54790
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/dotenv/index.js
54873
54791
  var require_dotenv2 = __commonJS({
54874
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/dotenv/index.js"(exports, module2) {
54792
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/dotenv/index.js"(exports, module2) {
54875
54793
  (() => {
54876
54794
  var e = { 608: (e2, r2, n2) => {
54877
54795
  const t = n2(147);
@@ -54979,16 +54897,16 @@ var require_dotenv2 = __commonJS({
54979
54897
  }
54980
54898
  });
54981
54899
 
54982
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/lodash/index.js
54900
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/lodash/index.js
54983
54901
  var require_lodash4 = __commonJS({
54984
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/lodash/index.js"(exports, module2) {
54902
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/lodash/index.js"(exports, module2) {
54985
54903
  module2.exports = require_lodash();
54986
54904
  }
54987
54905
  });
54988
54906
 
54989
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/fast-glob/index.js
54907
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/fast-glob/index.js
54990
54908
  var require_fast_glob2 = __commonJS({
54991
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/fast-glob/index.js"(exports, module2) {
54909
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/fast-glob/index.js"(exports, module2) {
54992
54910
  (() => {
54993
54911
  var t = { 6491: (t2, e2, r2) => {
54994
54912
  "use strict";
@@ -59502,9 +59420,9 @@ var require_fast_glob2 = __commonJS({
59502
59420
  }
59503
59421
  });
59504
59422
 
59505
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/globby/index.js
59423
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/globby/index.js
59506
59424
  var require_globby2 = __commonJS({
59507
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/globby/index.js"(exports, module2) {
59425
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/globby/index.js"(exports, module2) {
59508
59426
  (() => {
59509
59427
  var t = { 337: (t2) => {
59510
59428
  "use strict";
@@ -60147,9 +60065,9 @@ var require_globby2 = __commonJS({
60147
60065
  }
60148
60066
  });
60149
60067
 
60150
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/address/index.js
60068
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/address/index.js
60151
60069
  var require_address2 = __commonJS({
60152
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/address/index.js"(exports, module2) {
60070
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/address/index.js"(exports, module2) {
60153
60071
  (() => {
60154
60072
  "use strict";
60155
60073
  var e = { 198: (e2, r2, a2) => {
@@ -60353,16 +60271,16 @@ var require_address2 = __commonJS({
60353
60271
  }
60354
60272
  });
60355
60273
 
60356
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/signale/package.json
60274
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/signale/package.json
60357
60275
  var require_package3 = __commonJS({
60358
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/signale/package.json"(exports, module2) {
60276
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/signale/package.json"(exports, module2) {
60359
60277
  module2.exports = { name: "signale", author: { name: "Klaus Sinani", email: "klaussinani@gmail.com", url: "https://klaussinani.github.io" }, version: "1.4.0", license: "MIT", options: { default: { displayScope: true, displayBadge: true, displayDate: false, displayFilename: false, displayLabel: true, displayTimestamp: false, underlineLabel: true, underlineMessage: false, underlinePrefix: false, underlineSuffix: false, uppercaseLabel: false } } };
60360
60278
  }
60361
60279
  });
60362
60280
 
60363
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/signale/index.js
60281
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/signale/index.js
60364
60282
  var require_signale2 = __commonJS({
60365
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/signale/index.js"(exports, module2) {
60283
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/signale/index.js"(exports, module2) {
60366
60284
  (() => {
60367
60285
  var e = { 305: (e2, t2, r2) => {
60368
60286
  "use strict";
@@ -61914,9 +61832,9 @@ var require_signale2 = __commonJS({
61914
61832
  }
61915
61833
  });
61916
61834
 
61917
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/url-join/index.js
61835
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/url-join/index.js
61918
61836
  var require_url_join2 = __commonJS({
61919
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/url-join/index.js"(exports, module2) {
61837
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/url-join/index.js"(exports, module2) {
61920
61838
  (() => {
61921
61839
  var e = { 670: function(e2) {
61922
61840
  (function(r2, i2, t) {
@@ -62004,9 +61922,9 @@ var require_url_join2 = __commonJS({
62004
61922
  }
62005
61923
  });
62006
61924
 
62007
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/minimist/index.js
61925
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/minimist/index.js
62008
61926
  var require_minimist2 = __commonJS({
62009
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/minimist/index.js"(exports, module2) {
61927
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/minimist/index.js"(exports, module2) {
62010
61928
  (() => {
62011
61929
  var e = { 319: (e2) => {
62012
61930
  e2.exports = function(e3, t2) {
@@ -62234,9 +62152,9 @@ var require_minimist2 = __commonJS({
62234
62152
  }
62235
62153
  });
62236
62154
 
62237
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/filesize/index.js
62155
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/filesize/index.js
62238
62156
  var require_filesize2 = __commonJS({
62239
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/filesize/index.js"(exports, module2) {
62157
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/filesize/index.js"(exports, module2) {
62240
62158
  (() => {
62241
62159
  var i = { 823: function(i2) {
62242
62160
  (function(e2, t2) {
@@ -62371,9 +62289,9 @@ var require_filesize2 = __commonJS({
62371
62289
  }
62372
62290
  });
62373
62291
 
62374
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/gzip-size/index.js
62292
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/gzip-size/index.js
62375
62293
  var require_gzip_size2 = __commonJS({
62376
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/gzip-size/index.js"(exports, module2) {
62294
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/gzip-size/index.js"(exports, module2) {
62377
62295
  (() => {
62378
62296
  var e = { 325: (e2, r2, t2) => {
62379
62297
  var n = t2(781);
@@ -62524,9 +62442,9 @@ var require_gzip_size2 = __commonJS({
62524
62442
  }
62525
62443
  });
62526
62444
 
62527
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/dotenv-expand/index.js
62445
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/dotenv-expand/index.js
62528
62446
  var require_dotenv_expand2 = __commonJS({
62529
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/dotenv-expand/index.js"(exports, module2) {
62447
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/dotenv-expand/index.js"(exports, module2) {
62530
62448
  (() => {
62531
62449
  "use strict";
62532
62450
  var r = { 926: (r2) => {
@@ -62586,9 +62504,9 @@ var require_dotenv_expand2 = __commonJS({
62586
62504
  }
62587
62505
  });
62588
62506
 
62589
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/browserslist/index.js
62507
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/browserslist/index.js
62590
62508
  var require_browserslist2 = __commonJS({
62591
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/browserslist/index.js"(exports, module2) {
62509
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/browserslist/index.js"(exports, module2) {
62592
62510
  (() => {
62593
62511
  var e = { 923: (e2) => {
62594
62512
  function BrowserslistError(e3) {
@@ -63817,9 +63735,9 @@ var require_browserslist2 = __commonJS({
63817
63735
  }
63818
63736
  });
63819
63737
 
63820
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/recursive-readdir/index.js
63738
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/recursive-readdir/index.js
63821
63739
  var require_recursive_readdir2 = __commonJS({
63822
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/recursive-readdir/index.js"(exports, module2) {
63740
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/recursive-readdir/index.js"(exports, module2) {
63823
63741
  (() => {
63824
63742
  var e = { 155: (e2) => {
63825
63743
  "use strict";
@@ -64692,9 +64610,9 @@ var require_recursive_readdir2 = __commonJS({
64692
64610
  }
64693
64611
  });
64694
64612
 
64695
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/commander/index.js
64613
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/commander/index.js
64696
64614
  var require_commander2 = __commonJS({
64697
- "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/compiled/commander/index.js"(exports, module2) {
64615
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/commander/index.js"(exports, module2) {
64698
64616
  (() => {
64699
64617
  var t = { 81: (t2) => {
64700
64618
  "use strict";
@@ -80905,6 +80823,13 @@ var require_ejs = __commonJS({
80905
80823
  }
80906
80824
  });
80907
80825
 
80826
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.29.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/lodash/index.js
80827
+ var require_lodash5 = __commonJS({
80828
+ "../../../../node_modules/.pnpm/@modern-js+utils@2.29.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/compiled/lodash/index.js"(exports, module2) {
80829
+ module2.exports = require_lodash();
80830
+ }
80831
+ });
80832
+
80908
80833
  // ../../../../node_modules/.pnpm/escape-string-regexp@1.0.5/node_modules/escape-string-regexp/index.js
80909
80834
  var require_escape_string_regexp = __commonJS({
80910
80835
  "../../../../node_modules/.pnpm/escape-string-regexp@1.0.5/node_modules/escape-string-regexp/index.js"(exports, module2) {
@@ -116320,7 +116245,7 @@ function getPackageObj(context) {
116320
116245
  });
116321
116246
  }
116322
116247
 
116323
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/esm/import.js
116248
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/esm/import.js
116324
116249
  var lazy = (moduleName, requireFn) => {
116325
116250
  const importLazyLocal = require_import_lazy2()(requireFn);
116326
116251
  return importLazyLocal(moduleName);
@@ -116329,7 +116254,7 @@ var Import = {
116329
116254
  lazy
116330
116255
  };
116331
116256
 
116332
- // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0/node_modules/@modern-js/utils/dist/esm/compiled.js
116257
+ // ../../../../node_modules/.pnpm/@modern-js+utils@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/utils/dist/esm/compiled.js
116333
116258
  var import_fs_extra = __toESM(require_fs_extra2());
116334
116259
  var import_ora = __toESM(require_ora2());
116335
116260
  var import_glob = __toESM(require_glob2());
@@ -116363,11 +116288,11 @@ var mime = Import.lazy("../compiled/mime-types", require);
116363
116288
  var chokidar = Import.lazy("../compiled/chokidar", require);
116364
116289
  var inquirer = Import.lazy("../compiled/inquirer", require);
116365
116290
 
116366
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/index.js
116291
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/index.js
116367
116292
  var import_lodash8 = __toESM(require_lodash4());
116368
116293
  var import_comment_json = __toESM(require_src2());
116369
116294
 
116370
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.2.5/node_modules/@modern-js/codesmith-api-npm/dist/esm/utils/env.js
116295
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.2.5_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/codesmith-api-npm/dist/esm/utils/env.js
116371
116296
  function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
116372
116297
  try {
116373
116298
  var info = gen[key](arg);
@@ -116675,7 +116600,7 @@ function _canUsePnpm() {
116675
116600
  return _canUsePnpm.apply(this, arguments);
116676
116601
  }
116677
116602
 
116678
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.2.5/node_modules/@modern-js/codesmith-api-npm/dist/esm/utils/install.js
116603
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.2.5_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/codesmith-api-npm/dist/esm/utils/install.js
116679
116604
  function asyncGeneratorStep2(gen, resolve, reject, _next, _throw, key, arg) {
116680
116605
  try {
116681
116606
  var info = gen[key](arg);
@@ -117042,7 +116967,7 @@ function _pnpmInstall() {
117042
116967
  return _pnpmInstall.apply(this, arguments);
117043
116968
  }
117044
116969
 
117045
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.2.5/node_modules/@modern-js/codesmith-api-npm/dist/esm/index.js
116970
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-npm@2.2.5_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/codesmith-api-npm/dist/esm/index.js
117046
116971
  function _class_call_check(instance, Constructor) {
117047
116972
  if (!(instance instanceof Constructor)) {
117048
116973
  throw new TypeError("Cannot call a class as a function");
@@ -117123,7 +117048,7 @@ var NpmAPI = /* @__PURE__ */ function() {
117123
117048
  return NpmAPI2;
117124
117049
  }();
117125
117050
 
117126
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.2.5_@modern-js+codesmith@2.2.5/node_modules/@modern-js/codesmith-api-git/dist/esm/utils/index.js
117051
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/codesmith-api-git/dist/esm/utils/index.js
117127
117052
  function asyncGeneratorStep3(gen, resolve, reject, _next, _throw, key, arg) {
117128
117053
  try {
117129
117054
  var info = gen[key](arg);
@@ -117465,7 +117390,7 @@ function _gitCommit() {
117465
117390
  return _gitCommit.apply(this, arguments);
117466
117391
  }
117467
117392
 
117468
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.2.5_@modern-js+codesmith@2.2.5/node_modules/@modern-js/codesmith-api-git/dist/esm/index.js
117393
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-git@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/codesmith-api-git/dist/esm/index.js
117469
117394
  function asyncGeneratorStep4(gen, resolve, reject, _next, _throw, key, arg) {
117470
117395
  try {
117471
117396
  var info = gen[key](arg);
@@ -117796,11 +117721,11 @@ var GitAPI = /* @__PURE__ */ function() {
117796
117721
  return GitAPI2;
117797
117722
  }();
117798
117723
 
117799
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.2.5/node_modules/@modern-js/codesmith/dist/esm/materials/FsResource.js
117724
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/codesmith/dist/esm/materials/FsResource.js
117800
117725
  var import_path2 = __toESM(require("path"));
117801
117726
  var FS_RESOURCE = "_codesmith_core_fs_resource";
117802
117727
 
117803
- // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.2.5/node_modules/@modern-js/codesmith/dist/esm/utils/fsExists.js
117728
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/codesmith/dist/esm/utils/fsExists.js
117804
117729
  function asyncGeneratorStep5(gen, resolve, reject, _next, _throw, key, arg) {
117805
117730
  try {
117806
117731
  var info = gen[key](arg);
@@ -119229,7 +119154,7 @@ function isEmpty(val, strict) {
119229
119154
  return false;
119230
119155
  }
119231
119156
 
119232
- // ../../../../node_modules/.pnpm/tslib@2.4.0/node_modules/tslib/tslib.es6.js
119157
+ // ../../../../node_modules/.pnpm/tslib@2.3.1/node_modules/tslib/tslib.es6.js
119233
119158
  var __assign = function() {
119234
119159
  __assign = Object.assign || function __assign11(t) {
119235
119160
  for (var s, i = 1, n = arguments.length; i < n; i++) {
@@ -128464,11 +128389,11 @@ var Schema = (
128464
128389
  }()
128465
128390
  );
128466
128391
 
128467
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-formily/dist/esm/prompt.js
128392
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-formily/dist/esm/prompt.js
128468
128393
  var import_inquirer = __toESM(require_inquirer());
128469
128394
 
128470
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-formily/dist/esm/transform.js
128471
- var import_lodash4 = __toESM(require_lodash4());
128395
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-formily/dist/esm/transform.js
128396
+ var import_lodash4 = __toESM(require_lodash5());
128472
128397
  function asyncGeneratorStep9(gen, resolve, reject, _next, _throw, key, arg) {
128473
128398
  try {
128474
128399
  var info = gen[key](arg);
@@ -128814,7 +128739,7 @@ function transformForm(schema) {
128814
128739
  return getQuestionFromSchema(schema, configValue, validateMap, initValue);
128815
128740
  }
128816
128741
 
128817
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-formily/dist/esm/prompt.js
128742
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-formily/dist/esm/prompt.js
128818
128743
  function asyncGeneratorStep10(gen, resolve, reject, _next, _throw, key, arg) {
128819
128744
  try {
128820
128745
  var info = gen[key](arg);
@@ -129338,7 +129263,7 @@ function _prompt() {
129338
129263
  return _prompt.apply(this, arguments);
129339
129264
  }
129340
129265
 
129341
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-formily/dist/esm/inquirer.js
129266
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-formily@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-formily/dist/esm/inquirer.js
129342
129267
  function asyncGeneratorStep11(gen, resolve, reject, _next, _throw, key, arg) {
129343
129268
  try {
129344
129269
  var info = gen[key](arg);
@@ -129578,13 +129503,13 @@ var CLIReader = /* @__PURE__ */ function() {
129578
129503
  return CLIReader2;
129579
129504
  }();
129580
129505
 
129581
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/index.js
129506
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/index.js
129582
129507
  var import_inquirer2 = __toESM(require_inquirer2());
129583
129508
 
129584
- // ../../../../node_modules/.pnpm/@modern-js+plugin-i18n@2.18.0/node_modules/@modern-js/plugin-i18n/dist/esm-node/index.js
129509
+ // ../../../../node_modules/.pnpm/@modern-js+plugin-i18n@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/plugin-i18n/dist/esm-node/index.js
129585
129510
  var import_lodash6 = __toESM(require_lodash4());
129586
129511
 
129587
- // ../../../../node_modules/.pnpm/@modern-js+plugin-i18n@2.18.0/node_modules/@modern-js/plugin-i18n/dist/esm-node/utils/index.js
129512
+ // ../../../../node_modules/.pnpm/@modern-js+plugin-i18n@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/plugin-i18n/dist/esm-node/utils/index.js
129588
129513
  var import_lodash5 = __toESM(require_lodash4());
129589
129514
  function getObjKeyMap2(obj, prefix = "") {
129590
129515
  const result = {};
@@ -129598,7 +129523,7 @@ function getObjKeyMap2(obj, prefix = "") {
129598
129523
  return result;
129599
129524
  }
129600
129525
 
129601
- // ../../../../node_modules/.pnpm/@modern-js+plugin-i18n@2.18.0/node_modules/@modern-js/plugin-i18n/dist/esm-node/index.js
129526
+ // ../../../../node_modules/.pnpm/@modern-js+plugin-i18n@2.18.0_react-dom@18.2.0_react@18.2.0/node_modules/@modern-js/plugin-i18n/dist/esm-node/index.js
129602
129527
  function _define_property12(obj, key, value) {
129603
129528
  if (key in obj) {
129604
129529
  Object.defineProperty(obj, key, {
@@ -129657,7 +129582,7 @@ var I18n2 = class {
129657
129582
  }
129658
129583
  };
129659
129584
 
129660
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/locale/zh.js
129585
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/locale/zh.js
129661
129586
  var ZH_LOCALE2 = {
129662
129587
  environment: {
129663
129588
  node_version: "请升级 Node 版本至 LIS",
@@ -129684,7 +129609,7 @@ var ZH_LOCALE2 = {
129684
129609
  }
129685
129610
  };
129686
129611
 
129687
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/locale/en.js
129612
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/locale/en.js
129688
129613
  var EN_LOCALE2 = {
129689
129614
  environment: {
129690
129615
  node_version: "please upgrade node to lts version",
@@ -129711,14 +129636,14 @@ var EN_LOCALE2 = {
129711
129636
  }
129712
129637
  };
129713
129638
 
129714
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/locale/index.js
129639
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/locale/index.js
129715
129640
  var i18n2 = new I18n2();
129716
129641
  var localeKeys2 = i18n2.init("zh", {
129717
129642
  zh: ZH_LOCALE2,
129718
129643
  en: EN_LOCALE2
129719
129644
  });
129720
129645
 
129721
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/utils/transform.js
129646
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/utils/transform.js
129722
129647
  var import_lodash7 = __toESM(require_lodash4());
129723
129648
  function asyncGeneratorStep12(gen, resolve, reject, _next, _throw, key, arg) {
129724
129649
  try {
@@ -129927,7 +129852,7 @@ function transformInquirerSchema(questions) {
129927
129852
  return questions;
129928
129853
  }
129929
129854
 
129930
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/utils/checkUseNvm.js
129855
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/utils/checkUseNvm.js
129931
129856
  var import_path5 = __toESM(require("path"));
129932
129857
  function asyncGeneratorStep13(gen, resolve, reject, _next, _throw, key, arg) {
129933
129858
  try {
@@ -130191,7 +130116,7 @@ function _checkUseNvm() {
130191
130116
  return _checkUseNvm.apply(this, arguments);
130192
130117
  }
130193
130118
 
130194
- // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/index.js
130119
+ // ../../../../node_modules/.pnpm/@modern-js+codesmith-api-app@2.2.5_@modern-js+codesmith@2.2.5_react-dom@18.2.0_react@18.2.0_typescript@5.0.4/node_modules/@modern-js/codesmith-api-app/dist/esm/index.js
130195
130120
  function _array_like_to_array(arr, len) {
130196
130121
  if (len == null || len > arr.length)
130197
130122
  len = arr.length;
@@ -131393,4 +131318,20 @@ tmp/lib/tmp.js:
131393
131318
  *
131394
131319
  * MIT Licensed
131395
131320
  *)
131321
+
131322
+ tslib/tslib.es6.js:
131323
+ (*! *****************************************************************************
131324
+ Copyright (c) Microsoft Corporation.
131325
+
131326
+ Permission to use, copy, modify, and/or distribute this software for any
131327
+ purpose with or without fee is hereby granted.
131328
+
131329
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
131330
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
131331
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
131332
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
131333
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
131334
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
131335
+ PERFORMANCE OF THIS SOFTWARE.
131336
+ ***************************************************************************** *)
131396
131337
  */
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "3.1.30",
18
+ "version": "3.1.32",
19
19
  "jsnext:source": "./src/index.ts",
20
20
  "main": "./dist/index.js",
21
21
  "files": [
@@ -30,12 +30,12 @@
30
30
  "@types/node": "^14",
31
31
  "jest": "^29",
32
32
  "typescript": "^5",
33
- "@modern-js/plugin-i18n": "2.28.0",
34
- "@modern-js/generator-utils": "3.1.30",
35
- "@modern-js/utils": "2.28.0",
36
- "@modern-js/generator-common": "3.1.30",
37
- "@scripts/jest-config": "2.28.0",
38
- "@scripts/build": "2.28.0"
33
+ "@modern-js/plugin-i18n": "2.30.0",
34
+ "@modern-js/utils": "2.30.0",
35
+ "@modern-js/generator-utils": "3.1.32",
36
+ "@modern-js/generator-common": "3.1.32",
37
+ "@scripts/build": "2.30.0",
38
+ "@scripts/jest-config": "2.30.0"
39
39
  },
40
40
  "sideEffects": false,
41
41
  "publishConfig": {