@modern-js/repo-generator 0.0.0-next-1690455618469 → 0.0.0-next-1690467429566

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 +48 -29
  2. package/package.json +12 -12
package/dist/index.js CHANGED
@@ -122671,6 +122671,8 @@ var require_chainId = __commonJS({
122671
122671
  YAML: "yaml",
122672
122672
  /** Rule for wasm */
122673
122673
  WASM: "wasm",
122674
+ /** Rule for node */
122675
+ NODE: "node",
122674
122676
  /** Rule for bff */
122675
122677
  JS_BFF_API: "js-bff-api"
122676
122678
  },
@@ -122709,6 +122711,8 @@ var require_chainId = __commonJS({
122709
122711
  TOML: "toml",
122710
122712
  /** html-loader */
122711
122713
  HTML: "html",
122714
+ /** node-loader */
122715
+ NODE: "html",
122712
122716
  /** babel-loader */
122713
122717
  BABEL: "babel",
122714
122718
  /** esbuild-loader */
@@ -122727,6 +122731,8 @@ var require_chainId = __commonJS({
122727
122731
  CSS_MODULES_TS: "css-modules-typescript",
122728
122732
  /** mini-css-extract-plugin.loader */
122729
122733
  MINI_CSS_EXTRACT: "mini-css-extract",
122734
+ /** resolve-url-loader */
122735
+ RESOLVE_URL_LOADER_FOR_SASS: "resolve-url-loader",
122730
122736
  /** builder-plugin-image-compress.loader */
122731
122737
  IMAGE_COMPRESS: "image-compress",
122732
122738
  /** builder-plugin-image-compress svgo-loader */
@@ -122969,7 +122975,6 @@ var require_constants2 = __commonJS({
122969
122975
  };
122970
122976
  var INTERNAL_MODULE_TOOLS_PLUGINS = {
122971
122977
  "@modern-js/module-tools": "@modern-js/module-tools",
122972
- "@modern-js/doc-tools": "@modern-js/doc-tools",
122973
122978
  "@modern-js/runtime": "@modern-js/runtime/cli",
122974
122979
  "@modern-js/plugin-testing": "@modern-js/plugin-testing/cli",
122975
122980
  "@modern-js/plugin-storybook": "@modern-js/plugin-storybook/cli",
@@ -123247,11 +123252,12 @@ var require_config2 = __commonJS({
123247
123252
  });
123248
123253
  var _type = require_type();
123249
123254
  var isSSR = (config) => {
123255
+ var _server, _server1;
123250
123256
  const { server } = config;
123251
- if (server === null || server === void 0 ? void 0 : server.ssr) {
123257
+ if ((_server = server) === null || _server === void 0 ? void 0 : _server.ssr) {
123252
123258
  return true;
123253
123259
  }
123254
- if ((server === null || server === void 0 ? void 0 : server.ssrByEntries) && !(0, _type.isEmpty)(server.ssrByEntries)) {
123260
+ if (((_server1 = server) === null || _server1 === void 0 ? void 0 : _server1.ssrByEntries) && !(0, _type.isEmpty)(server.ssrByEntries)) {
123255
123261
  for (const name of Object.keys(server.ssrByEntries)) {
123256
123262
  if (server.ssrByEntries[name]) {
123257
123263
  return true;
@@ -123261,27 +123267,29 @@ var require_config2 = __commonJS({
123261
123267
  return false;
123262
123268
  };
123263
123269
  var isUseSSRBundle = (config) => {
123270
+ var _output;
123264
123271
  const { output: output2 } = config;
123265
- if (output2 === null || output2 === void 0 ? void 0 : output2.ssg) {
123272
+ if ((_output = output2) === null || _output === void 0 ? void 0 : _output.ssg) {
123266
123273
  return true;
123267
123274
  }
123268
123275
  return isSSR(config);
123269
123276
  };
123270
123277
  var isServiceWorker = (config) => {
123271
- var _deploy_worker;
123278
+ var _deploy_worker, _deploy, _output;
123272
123279
  const { output: output2, deploy } = config;
123273
- if ((deploy === null || deploy === void 0 ? void 0 : (_deploy_worker = deploy.worker) === null || _deploy_worker === void 0 ? void 0 : _deploy_worker.ssr) && ((output2 === null || output2 === void 0 ? void 0 : output2.ssg) || isSSR(config))) {
123280
+ if (((_deploy = deploy) === null || _deploy === void 0 ? void 0 : (_deploy_worker = _deploy.worker) === null || _deploy_worker === void 0 ? void 0 : _deploy_worker.ssr) && (((_output = output2) === null || _output === void 0 ? void 0 : _output.ssg) || isSSR(config))) {
123274
123281
  return true;
123275
123282
  }
123276
123283
  return false;
123277
123284
  };
123278
123285
  var isRouterV5 = (config) => {
123279
- var _config_runtime, _config_runtime1, _config_runtime_router;
123280
- return typeof ((_config_runtime = config.runtime) === null || _config_runtime === void 0 ? void 0 : _config_runtime.router) !== "boolean" && (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";
123286
+ var _config_runtime, _config_runtime_router, _config_runtime1, _config;
123287
+ 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";
123281
123288
  };
123282
123289
  var isSSGEntry = (config, entryName, entrypoints) => {
123290
+ var _ssgConfig, _ssgConfig1;
123283
123291
  const ssgConfig = config.output.ssg;
123284
- const useSSG = isSingleEntry(entrypoints) ? Boolean(ssgConfig) : ssgConfig === true || typeof (ssgConfig === null || ssgConfig === void 0 ? void 0 : ssgConfig[0]) === "function" || Boolean(ssgConfig === null || ssgConfig === void 0 ? void 0 : ssgConfig[entryName]);
123292
+ const useSSG = isSingleEntry(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]);
123285
123293
  return useSSG;
123286
123294
  };
123287
123295
  var isSingleEntry = (entrypoints) => entrypoints.length === 1 && entrypoints[0].entryName === "main";
@@ -124028,7 +124036,7 @@ var require_alias = __commonJS({
124028
124036
  };
124029
124037
  var mergeAlias = (alias) => (0, _applyOptionsChain.applyOptionsChain)({}, alias);
124030
124038
  var getAliasConfig = (aliasOption, option) => {
124031
- var _tsconfig_compilerOptions, _tsconfig_compilerOptions1;
124039
+ var _tsconfig_compilerOptions, _tsconfig, _tsconfig_compilerOptions1, _tsconfig1;
124032
124040
  const isTsProject = _fs.default.existsSync(option.tsconfigPath);
124033
124041
  const alias = mergeAlias(aliasOption);
124034
124042
  if (!isTsProject) {
@@ -124040,10 +124048,10 @@ var require_alias = __commonJS({
124040
124048
  };
124041
124049
  }
124042
124050
  const tsconfig = (0, _get.readTsConfigByFile)(option.tsconfigPath);
124043
- const baseUrl = tsconfig === null || tsconfig === void 0 ? void 0 : (_tsconfig_compilerOptions = tsconfig.compilerOptions) === null || _tsconfig_compilerOptions === void 0 ? void 0 : _tsconfig_compilerOptions.baseUrl;
124051
+ const baseUrl = (_tsconfig = tsconfig) === null || _tsconfig === void 0 ? void 0 : (_tsconfig_compilerOptions = _tsconfig.compilerOptions) === null || _tsconfig_compilerOptions === void 0 ? void 0 : _tsconfig_compilerOptions.baseUrl;
124044
124052
  return {
124045
124053
  absoluteBaseUrl: baseUrl ? _path.default.join(option.appDirectory, baseUrl) : option.appDirectory,
124046
- paths: __spreadValues(__spreadValues({}, alias), tsconfig === null || tsconfig === void 0 ? void 0 : (_tsconfig_compilerOptions1 = tsconfig.compilerOptions) === null || _tsconfig_compilerOptions1 === void 0 ? void 0 : _tsconfig_compilerOptions1.paths),
124054
+ paths: __spreadValues(__spreadValues({}, alias), (_tsconfig1 = tsconfig) === null || _tsconfig1 === void 0 ? void 0 : (_tsconfig_compilerOptions1 = _tsconfig1.compilerOptions) === null || _tsconfig_compilerOptions1 === void 0 ? void 0 : _tsconfig_compilerOptions1.paths),
124047
124055
  isTsPath: true,
124048
124056
  isTsProject
124049
124057
  };
@@ -124582,7 +124590,8 @@ var require_prettyInstructions = __commonJS({
124582
124590
  const LOCAL_LABEL = "Local: ";
124583
124591
  const NETWORK_LABEL = "Network: ";
124584
124592
  const isLocalhost = (url) => {
124585
- return url === null || url === void 0 ? void 0 : url.includes("localhost");
124593
+ var _url;
124594
+ return (_url = url) === null || _url === void 0 ? void 0 : _url.includes("localhost");
124586
124595
  };
124587
124596
  if (host && host !== _constants.DEFAULT_DEV_HOST) {
124588
124597
  return [
@@ -124611,7 +124620,7 @@ var require_prettyInstructions = __commonJS({
124611
124620
  var prettyInstructions = (appContext, config) => {
124612
124621
  var _appContext_builder_context_devServer, _appContext_builder, _config_dev;
124613
124622
  const { entrypoints, serverRoutes, port, apiOnly, checkedEntries } = appContext;
124614
- const isHttps = (0, _is.isDev)() && ((_appContext_builder_context_devServer = (_appContext_builder = appContext.builder) === null || _appContext_builder === void 0 ? void 0 : _appContext_builder.context.devServer) === null || _appContext_builder_context_devServer === void 0 ? void 0 : _appContext_builder_context_devServer.https);
124623
+ 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);
124615
124624
  const urls = getAddressUrls(isHttps ? "https" : "http", port, (_config_dev = config.dev) === null || _config_dev === void 0 ? void 0 : _config_dev.host);
124616
124625
  const routes = !apiOnly ? serverRoutes.filter((route) => route.entryName) : serverRoutes;
124617
124626
  let message = "App running at:\n\n";
@@ -124676,8 +124685,9 @@ var require_require = __commonJS({
124676
124685
  });
124677
124686
  var _fs = require_fs();
124678
124687
  var compatRequire = (filePath, interop = true) => {
124688
+ var _mod;
124679
124689
  const mod = require(filePath);
124680
- const rtnESMDefault = interop && (mod === null || mod === void 0 ? void 0 : mod.__esModule);
124690
+ const rtnESMDefault = interop && ((_mod = mod) === null || _mod === void 0 ? void 0 : _mod.__esModule);
124681
124691
  return rtnESMDefault ? mod.default : mod;
124682
124692
  };
124683
124693
  var dynamicImport = new Function("modulePath", "return import(modulePath)");
@@ -144493,16 +144503,18 @@ var getSolutionSchema = (extra = {}) => {
144493
144503
  type: "string",
144494
144504
  title: extra.isMonorepo ? i18n2.t(localeKeys2.sub_solution.self) : i18n2.t(localeKeys2.solution.self),
144495
144505
  enum: (() => {
144496
- var _extra_customPlugin, _extra_customPlugin_custom;
144497
- const items = ((extra === null || extra === void 0 ? void 0 : extra.solutions) || Object.values((extra === null || extra === void 0 ? void 0 : extra.isMonorepo) ? SubSolution : Solution)).filter((solution) => {
144498
- return !((extra === null || extra === void 0 ? void 0 : extra.isSubProject) && solution === Solution.Monorepo);
144506
+ var _extra, _extra1, _extra_customPlugin_custom, _extra_customPlugin, _extra2;
144507
+ const items = (((_extra = extra) === null || _extra === void 0 ? void 0 : _extra.solutions) || Object.values(((_extra1 = extra) === null || _extra1 === void 0 ? void 0 : _extra1.isMonorepo) ? SubSolution : Solution)).filter((solution) => {
144508
+ var _extra3;
144509
+ return !(((_extra3 = extra) === null || _extra3 === void 0 ? void 0 : _extra3.isSubProject) && solution === Solution.Monorepo);
144499
144510
  }).map((solution) => {
144511
+ var _extra3;
144500
144512
  return {
144501
144513
  value: solution,
144502
- label: (extra === null || extra === void 0 ? void 0 : extra.isMonorepo) ? SubSolutionText[solution]() : SolutionText[solution]()
144514
+ label: ((_extra3 = extra) === null || _extra3 === void 0 ? void 0 : _extra3.isMonorepo) ? SubSolutionText[solution]() : SolutionText[solution]()
144503
144515
  };
144504
144516
  });
144505
- if (extra === null || extra === void 0 ? void 0 : (_extra_customPlugin = extra.customPlugin) === null || _extra_customPlugin === void 0 ? void 0 : (_extra_customPlugin_custom = _extra_customPlugin.custom) === null || _extra_customPlugin_custom === void 0 ? void 0 : _extra_customPlugin_custom.length) {
144517
+ if ((_extra2 = extra) === null || _extra2 === void 0 ? void 0 : (_extra_customPlugin = _extra2.customPlugin) === null || _extra_customPlugin === void 0 ? void 0 : (_extra_customPlugin_custom = _extra_customPlugin.custom) === null || _extra_customPlugin_custom === void 0 ? void 0 : _extra_customPlugin_custom.length) {
144506
144518
  return [
144507
144519
  ...items,
144508
144520
  {
@@ -144518,7 +144530,8 @@ var getSolutionSchema = (extra = {}) => {
144518
144530
  };
144519
144531
  };
144520
144532
  var getScenesSchema = (extra = {}) => {
144521
- const hasPlugin = (extra === null || extra === void 0 ? void 0 : extra.customPlugin) && extra.customPlugin[(extra === null || extra === void 0 ? void 0 : extra.isMonorepoSubProject) ? getSolutionNameFromSubSolution(extra === null || extra === void 0 ? void 0 : extra.solution) : extra === null || extra === void 0 ? void 0 : extra.solution] && extra.customPlugin[(extra === null || extra === void 0 ? void 0 : extra.isMonorepoSubProject) ? getSolutionNameFromSubSolution(extra === null || extra === void 0 ? void 0 : extra.solution) : extra === null || extra === void 0 ? void 0 : extra.solution].length > 0;
144533
+ var _extra, _extra1, _extra2, _extra3, _extra4, _extra5, _extra6;
144534
+ const hasPlugin = ((_extra = extra) === null || _extra === void 0 ? void 0 : _extra.customPlugin) && extra.customPlugin[((_extra1 = extra) === null || _extra1 === void 0 ? void 0 : _extra1.isMonorepoSubProject) ? getSolutionNameFromSubSolution((_extra2 = extra) === null || _extra2 === void 0 ? void 0 : _extra2.solution) : (_extra3 = extra) === null || _extra3 === void 0 ? void 0 : _extra3.solution] && extra.customPlugin[((_extra4 = extra) === null || _extra4 === void 0 ? void 0 : _extra4.isMonorepoSubProject) ? getSolutionNameFromSubSolution((_extra5 = extra) === null || _extra5 === void 0 ? void 0 : _extra5.solution) : (_extra6 = extra) === null || _extra6 === void 0 ? void 0 : _extra6.solution].length > 0;
144522
144535
  return {
144523
144536
  type: "object",
144524
144537
  properties: hasPlugin ? {
@@ -144526,15 +144539,17 @@ var getScenesSchema = (extra = {}) => {
144526
144539
  type: "string",
144527
144540
  title: i18n2.t(localeKeys2.scenes.self),
144528
144541
  enum: (() => {
144529
- const solution = (extra === null || extra === void 0 ? void 0 : extra.isMonorepoSubProject) ? getSolutionNameFromSubSolution(extra === null || extra === void 0 ? void 0 : extra.solution) : extra === null || extra === void 0 ? void 0 : extra.solution;
144530
- const items = ((extra === null || extra === void 0 ? void 0 : extra.customPlugin) ? (extra === null || extra === void 0 ? void 0 : extra.customPlugin[solution]) || [] : []).map((plugin) => ({
144542
+ var _extra7, _extra12, _extra22, _extra32, _extra42;
144543
+ const solution = ((_extra7 = extra) === null || _extra7 === void 0 ? void 0 : _extra7.isMonorepoSubProject) ? getSolutionNameFromSubSolution((_extra12 = extra) === null || _extra12 === void 0 ? void 0 : _extra12.solution) : (_extra22 = extra) === null || _extra22 === void 0 ? void 0 : _extra22.solution;
144544
+ const items = (((_extra32 = extra) === null || _extra32 === void 0 ? void 0 : _extra32.customPlugin) ? ((_extra42 = extra) === null || _extra42 === void 0 ? void 0 : _extra42.customPlugin[solution]) || [] : []).map((plugin) => ({
144531
144545
  value: plugin.key,
144532
144546
  label: extra.locale === "zh" ? plugin.name_zh || plugin.name : plugin.name
144533
144547
  }));
144534
144548
  if (solution && solution !== "custom") {
144549
+ var _extra52;
144535
144550
  items.unshift({
144536
144551
  value: solution,
144537
- label: `${(extra === null || extra === void 0 ? void 0 : extra.isMonorepoSubProject) ? SubSolutionText[solution]() : SolutionText[solution]()}(${i18n2.t(localeKeys2.solution.default)})`
144552
+ label: `${((_extra52 = extra) === null || _extra52 === void 0 ? void 0 : _extra52.isMonorepoSubProject) ? SubSolutionText[solution]() : SolutionText[solution]()}(${i18n2.t(localeKeys2.solution.default)})`
144538
144553
  });
144539
144554
  }
144540
144555
  return items;
@@ -144591,11 +144606,13 @@ var PackageManagerName = {
144591
144606
  [PackageManager.Npm]: "npm"
144592
144607
  };
144593
144608
  var getPackageManagerSchema = (extra = {}) => {
144609
+ var _extra, _extra1;
144594
144610
  return {
144595
144611
  type: "string",
144596
144612
  title: i18n2.t(localeKeys2.packageManager.self),
144597
144613
  enum: Object.values(PackageManager).filter((packageManager) => {
144598
- return (extra === null || extra === void 0 ? void 0 : extra.solution) === "monorepo" ? packageManager !== PackageManager.Npm : true;
144614
+ var _extra2;
144615
+ return ((_extra2 = extra) === null || _extra2 === void 0 ? void 0 : _extra2.solution) === "monorepo" ? packageManager !== PackageManager.Npm : true;
144599
144616
  }).map((packageManager) => ({
144600
144617
  value: packageManager,
144601
144618
  label: PackageManagerName[packageManager]
@@ -144605,7 +144622,7 @@ var getPackageManagerSchema = (extra = {}) => {
144605
144622
  dependencies: [],
144606
144623
  fulfill: {
144607
144624
  state: {
144608
- visible: !(extra === null || extra === void 0 ? void 0 : extra.isMonorepoSubProject) && !(extra === null || extra === void 0 ? void 0 : extra.isSubProject)
144625
+ visible: !((_extra = extra) === null || _extra === void 0 ? void 0 : _extra.isMonorepoSubProject) && !((_extra1 = extra) === null || _extra1 === void 0 ? void 0 : _extra1.isSubProject)
144609
144626
  }
144610
144627
  }
144611
144628
  }
@@ -144615,15 +144632,16 @@ var getPackageManagerSchema = (extra = {}) => {
144615
144632
 
144616
144633
  // ../../generator-common/dist/esm-node/common/packageName.js
144617
144634
  var getPackageNameSchema = (extra = {}) => {
144635
+ var _extra, _extra1, _extra2, _extra3;
144618
144636
  return {
144619
144637
  type: "string",
144620
- title: (extra === null || extra === void 0 ? void 0 : extra.isMonorepoSubProject) ? i18n2.t(localeKeys2.packageName.sub_name) : i18n2.t(localeKeys2.packageName.self),
144638
+ title: ((_extra = extra) === null || _extra === void 0 ? void 0 : _extra.isMonorepoSubProject) ? i18n2.t(localeKeys2.packageName.sub_name) : i18n2.t(localeKeys2.packageName.self),
144621
144639
  "x-reactions": [
144622
144640
  {
144623
144641
  dependencies: [],
144624
144642
  fulfill: {
144625
144643
  state: {
144626
- visible: Boolean(extra === null || extra === void 0 ? void 0 : extra.isMonorepoSubProject) || !(extra === null || extra === void 0 ? void 0 : extra.isMwa) && !(extra === null || extra === void 0 ? void 0 : extra.isDoc)
144644
+ visible: Boolean((_extra1 = extra) === null || _extra1 === void 0 ? void 0 : _extra1.isMonorepoSubProject) || !((_extra2 = extra) === null || _extra2 === void 0 ? void 0 : _extra2.isMwa) && !((_extra3 = extra) === null || _extra3 === void 0 ? void 0 : _extra3.isDoc)
144627
144645
  }
144628
144646
  }
144629
144647
  }
@@ -144640,6 +144658,7 @@ var getPackageNameSchema = (extra = {}) => {
144640
144658
  // ../../generator-common/dist/esm-node/common/packagePath.js
144641
144659
  var PackagePathRegex = new RegExp("^[a-z0-9-_]+[a-z0-9-/_]*$");
144642
144660
  var getPackagePathSchema = (extra) => {
144661
+ var _extra;
144643
144662
  return {
144644
144663
  type: "string",
144645
144664
  title: i18n2.t(localeKeys2.packagePath.self),
@@ -144651,7 +144670,7 @@ var getPackagePathSchema = (extra) => {
144651
144670
  fulfill: {
144652
144671
  state: {
144653
144672
  value: "{{$deps[0]}}",
144654
- visible: Boolean(extra === null || extra === void 0 ? void 0 : extra.isMonorepoSubProject)
144673
+ visible: Boolean((_extra = extra) === null || _extra === void 0 ? void 0 : _extra.isMonorepoSubProject)
144655
144674
  }
144656
144675
  }
144657
144676
  }
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "modern",
16
16
  "modern.js"
17
17
  ],
18
- "version": "0.0.0-next-1690455618469",
18
+ "version": "0.0.0-next-1690467429566",
19
19
  "jsnext:source": "./src/index.ts",
20
20
  "main": "./dist/index.js",
21
21
  "files": [
@@ -29,17 +29,17 @@
29
29
  "@types/node": "^14",
30
30
  "jest": "^29",
31
31
  "typescript": "^5",
32
- "@modern-js/generator-common": "0.0.0-next-1690455618469",
33
- "@modern-js/module-generator": "0.0.0-next-1690455618469",
34
- "@modern-js/monorepo-generator": "0.0.0-next-1690455618469",
35
- "@modern-js/mwa-generator": "0.0.0-next-1690455618469",
36
- "@modern-js/doc-generator": "0.0.0-next-1690455618469",
37
- "@modern-js/utils": "0.0.0-next-1690455618469",
38
- "@modern-js/base-generator": "0.0.0-next-1690455618469",
39
- "@modern-js/generator-plugin": "0.0.0-next-1690455618469",
40
- "@modern-js/generator-utils": "0.0.0-next-1690455618469",
41
- "@scripts/build": "0.0.0-next-1690455618469",
42
- "@scripts/jest-config": "0.0.0-next-1690455618469"
32
+ "@modern-js/base-generator": "0.0.0-next-1690467429566",
33
+ "@modern-js/generator-common": "0.0.0-next-1690467429566",
34
+ "@modern-js/generator-plugin": "0.0.0-next-1690467429566",
35
+ "@modern-js/generator-utils": "0.0.0-next-1690467429566",
36
+ "@modern-js/module-generator": "0.0.0-next-1690467429566",
37
+ "@modern-js/monorepo-generator": "0.0.0-next-1690467429566",
38
+ "@modern-js/mwa-generator": "0.0.0-next-1690467429566",
39
+ "@modern-js/doc-generator": "0.0.0-next-1690467429566",
40
+ "@modern-js/utils": "0.0.0-next-1690467429566",
41
+ "@scripts/build": "0.0.0-next-1690467429566",
42
+ "@scripts/jest-config": "0.0.0-next-1690467429566"
43
43
  },
44
44
  "sideEffects": false,
45
45
  "publishConfig": {