@modern-js/app-tools 2.8.1-alpha.0 → 2.8.1-alpha.1

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 (137) hide show
  1. package/dist/cjs/analyze/generateCode.js +1 -3
  2. package/dist/cjs/analyze/index.js +0 -8
  3. package/dist/cjs/analyze/templates.js +14 -31
  4. package/dist/cjs/builder/index.js +2 -0
  5. package/dist/esm/analyze/generateCode.js +2 -3
  6. package/dist/esm/analyze/index.js +0 -8
  7. package/dist/esm/analyze/templates.js +16 -30
  8. package/dist/esm/builder/index.js +2 -0
  9. package/dist/esm-node/analyze/generateCode.js +1 -3
  10. package/dist/esm-node/analyze/index.js +0 -8
  11. package/dist/esm-node/analyze/templates.js +14 -31
  12. package/dist/esm-node/builder/index.js +2 -0
  13. package/dist/js/modern/analyze/constants.js +3 -1
  14. package/dist/js/modern/analyze/getServerRoutes.js +5 -2
  15. package/dist/js/modern/analyze/index.js +47 -46
  16. package/dist/js/modern/analyze/nestedRoutes.js +32 -3
  17. package/dist/js/modern/analyze/templates.js +4 -10
  18. package/dist/js/modern/builder/builder-rspack/index.js +8 -0
  19. package/dist/js/modern/builder/builder-webpack/builderPlugins/compatModern.js +41 -0
  20. package/dist/js/modern/builder/builder-webpack/index.js +93 -0
  21. package/dist/js/modern/builder/{webpackPlugins/routerPlugin.js → builder-webpack/webpackPlugins/RouterPlugin.js} +4 -1
  22. package/dist/js/modern/builder/builder-webpack/webpackPlugins/index.js +1 -0
  23. package/dist/js/modern/builder/generator/createBuilderOptions.js +24 -0
  24. package/dist/js/modern/builder/generator/createBuilderProviderConfig.js +39 -0
  25. package/dist/js/modern/builder/generator/getBuilderTargets.js +21 -0
  26. package/dist/js/modern/builder/generator/index.js +53 -0
  27. package/dist/js/modern/builder/index.js +13 -133
  28. package/dist/js/modern/builder/{builderPlugins/compatModern.js → shared/builderPlugins/adapterModern.js} +102 -116
  29. package/dist/js/modern/builder/shared/bundlerPlugins/HtmlAsyncChunkPlugin.js +27 -0
  30. package/dist/js/modern/builder/shared/bundlerPlugins/HtmlBottomTemplate.js +34 -0
  31. package/dist/js/modern/builder/shared/index.js +3 -0
  32. package/dist/js/modern/builder/shared/types.js +0 -0
  33. package/dist/js/modern/config/default.js +2 -2
  34. package/dist/js/modern/config/index.js +3 -8
  35. package/dist/js/modern/config/initialize/index.js +12 -0
  36. package/dist/js/modern/config/{initial → initialize}/inits.js +4 -2
  37. package/dist/js/modern/config/{initial/transformNormalizedConfig.js → legacy/index.js} +4 -0
  38. package/dist/js/modern/index.js +18 -8
  39. package/dist/js/modern/initialize/index.js +36 -28
  40. package/dist/js/modern/locale/zh.js +1 -1
  41. package/dist/js/modern/types/utils.js +0 -0
  42. package/dist/js/node/analyze/constants.js +3 -1
  43. package/dist/js/node/analyze/getServerRoutes.js +3 -1
  44. package/dist/js/node/analyze/index.js +48 -47
  45. package/dist/js/node/analyze/nestedRoutes.js +32 -3
  46. package/dist/js/node/analyze/templates.js +4 -10
  47. package/dist/js/node/{config/initial → builder/builder-rspack}/index.js +9 -19
  48. package/dist/js/node/builder/builder-webpack/builderPlugins/compatModern.js +64 -0
  49. package/dist/js/node/builder/builder-webpack/index.js +118 -0
  50. package/dist/js/node/builder/{webpackPlugins/routerPlugin.js → builder-webpack/webpackPlugins/RouterPlugin.js} +10 -5
  51. package/dist/js/node/builder/builder-webpack/webpackPlugins/index.js +17 -0
  52. package/dist/js/node/builder/generator/createBuilderOptions.js +47 -0
  53. package/dist/js/node/builder/generator/createBuilderProviderConfig.js +60 -0
  54. package/dist/js/node/builder/generator/getBuilderTargets.js +39 -0
  55. package/dist/js/node/builder/generator/index.js +82 -0
  56. package/dist/js/node/builder/index.js +14 -123
  57. package/dist/js/node/builder/{builderPlugins/compatModern.js → shared/builderPlugins/adapterModern.js} +107 -120
  58. package/dist/js/node/builder/{webpackPlugins/htmlAsyncChunkPlugin.js → shared/bundlerPlugins/HtmlAsyncChunkPlugin.js} +17 -20
  59. package/dist/js/node/builder/{webpackPlugins/htmlBottomTemplate.js → shared/bundlerPlugins/HtmlBottomTemplate.js} +21 -24
  60. package/dist/js/node/builder/{share.js → shared/createCopyPattern.js} +3 -3
  61. package/dist/js/node/builder/shared/index.js +19 -0
  62. package/dist/js/node/builder/shared/types.js +15 -0
  63. package/dist/js/node/config/default.js +2 -2
  64. package/dist/js/node/config/index.js +4 -19
  65. package/dist/js/node/{builder/loaders/routerLoader.js → config/initialize/index.js} +14 -17
  66. package/dist/js/node/config/{initial → initialize}/inits.js +4 -2
  67. package/dist/js/node/config/{initial/transformNormalizedConfig.js → legacy/index.js} +8 -3
  68. package/dist/js/node/index.js +18 -8
  69. package/dist/js/node/initialize/index.js +35 -28
  70. package/dist/js/node/locale/zh.js +1 -1
  71. package/dist/js/node/types/utils.js +15 -0
  72. package/dist/js/treeshaking/analyze/constants.js +3 -1
  73. package/dist/js/treeshaking/analyze/generateCode.js +14 -14
  74. package/dist/js/treeshaking/analyze/getBundleEntry.js +2 -2
  75. package/dist/js/treeshaking/analyze/getClientRoutes/getRoutes.js +1 -1
  76. package/dist/js/treeshaking/analyze/getClientRoutes/getRoutesLegacy.js +1 -1
  77. package/dist/js/treeshaking/analyze/getFileSystemEntry.js +1 -1
  78. package/dist/js/treeshaking/analyze/getServerRoutes.js +8 -6
  79. package/dist/js/treeshaking/analyze/index.js +142 -137
  80. package/dist/js/treeshaking/analyze/nestedRoutes.js +29 -4
  81. package/dist/js/treeshaking/analyze/templates.js +10 -13
  82. package/dist/js/treeshaking/analyze/utils.js +3 -3
  83. package/dist/js/treeshaking/builder/builder-rspack/index.js +6 -0
  84. package/dist/js/treeshaking/builder/builder-webpack/builderPlugins/compatModern.js +64 -0
  85. package/dist/js/treeshaking/builder/builder-webpack/index.js +301 -0
  86. package/dist/js/treeshaking/builder/{webpackPlugins/routerPlugin.js → builder-webpack/webpackPlugins/RouterPlugin.js} +6 -3
  87. package/dist/js/treeshaking/builder/builder-webpack/webpackPlugins/index.js +1 -0
  88. package/dist/js/treeshaking/builder/generator/createBuilderOptions.js +41 -0
  89. package/dist/js/treeshaking/builder/generator/createBuilderProviderConfig.js +70 -0
  90. package/dist/js/treeshaking/builder/generator/getBuilderTargets.js +16 -0
  91. package/dist/js/treeshaking/builder/generator/index.js +199 -0
  92. package/dist/js/treeshaking/builder/index.js +29 -228
  93. package/dist/js/treeshaking/builder/{builderPlugins/compatModern.js → shared/builderPlugins/adapterModern.js} +138 -142
  94. package/dist/js/treeshaking/builder/{webpackPlugins/htmlBottomTemplate.js → shared/bundlerPlugins/HtmlBottomTemplate.js} +2 -2
  95. package/dist/js/treeshaking/builder/shared/index.js +3 -0
  96. package/dist/js/treeshaking/builder/shared/types.js +1 -0
  97. package/dist/js/treeshaking/commands/dev.js +2 -2
  98. package/dist/js/treeshaking/commands/serve.js +2 -2
  99. package/dist/js/treeshaking/config/default.js +2 -2
  100. package/dist/js/treeshaking/config/index.js +3 -3
  101. package/dist/js/treeshaking/config/initialize/index.js +10 -0
  102. package/dist/js/treeshaking/config/{initial → initialize}/inits.js +6 -4
  103. package/dist/js/treeshaking/config/legacy/createHtmlConfig.js +19 -0
  104. package/dist/js/treeshaking/config/{initial → legacy}/createOutputConfig.js +1 -1
  105. package/dist/js/treeshaking/config/{initial → legacy}/createSourceConfig.js +1 -1
  106. package/dist/js/treeshaking/config/{initial → legacy}/createToolsConfig.js +1 -1
  107. package/dist/js/treeshaking/config/{initial/transformNormalizedConfig.js → legacy/index.js} +4 -1
  108. package/dist/js/treeshaking/index.js +19 -12
  109. package/dist/js/treeshaking/initialize/index.js +36 -28
  110. package/dist/js/treeshaking/locale/zh.js +1 -1
  111. package/dist/js/treeshaking/types/utils.js +1 -0
  112. package/dist/js/treeshaking/utils/config.js +2 -2
  113. package/dist/js/treeshaking/utils/getServerInternalPlugins.js +2 -2
  114. package/dist/types/analyze/templates.d.ts +1 -3
  115. package/dist/types/types/config/output.d.ts +0 -1
  116. package/package.json +12 -12
  117. package/dist/js/modern/builder/loaders/routerLoader.js +0 -17
  118. package/dist/js/modern/builder/webpackPlugins/htmlAsyncChunkPlugin.js +0 -30
  119. package/dist/js/modern/builder/webpackPlugins/htmlBottomTemplate.js +0 -37
  120. package/dist/js/modern/config/initial/index.js +0 -16
  121. package/dist/js/treeshaking/builder/loaders/routerLoader.js +0 -13
  122. package/dist/js/treeshaking/config/initial/createHtmlConfig.js +0 -19
  123. package/dist/js/treeshaking/config/initial/index.js +0 -12
  124. /package/dist/js/modern/builder/{share.js → shared/createCopyPattern.js} +0 -0
  125. /package/dist/js/modern/builder/{loaders → shared/loaders}/serverModuleLoader.js +0 -0
  126. /package/dist/js/modern/config/{initial → legacy}/createHtmlConfig.js +0 -0
  127. /package/dist/js/modern/config/{initial → legacy}/createOutputConfig.js +0 -0
  128. /package/dist/js/modern/config/{initial → legacy}/createSourceConfig.js +0 -0
  129. /package/dist/js/modern/config/{initial → legacy}/createToolsConfig.js +0 -0
  130. /package/dist/js/node/builder/{loaders → shared/loaders}/serverModuleLoader.js +0 -0
  131. /package/dist/js/node/config/{initial → legacy}/createHtmlConfig.js +0 -0
  132. /package/dist/js/node/config/{initial → legacy}/createOutputConfig.js +0 -0
  133. /package/dist/js/node/config/{initial → legacy}/createSourceConfig.js +0 -0
  134. /package/dist/js/node/config/{initial → legacy}/createToolsConfig.js +0 -0
  135. /package/dist/js/treeshaking/builder/{webpackPlugins/htmlAsyncChunkPlugin.js → shared/bundlerPlugins/HtmlAsyncChunkPlugin.js} +0 -0
  136. /package/dist/js/treeshaking/builder/{share.js → shared/createCopyPattern.js} +0 -0
  137. /package/dist/js/treeshaking/builder/{loaders → shared/loaders}/serverModuleLoader.js +0 -0
@@ -439,6 +439,9 @@ var buildCommand = function() {
439
439
  };
440
440
  }();
441
441
  var src_default = function() {
442
+ var options = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {
443
+ bundler: "webpack"
444
+ };
442
445
  return {
443
446
  name: "@modern-js/app-tools",
444
447
  post: [
@@ -453,8 +456,12 @@ var src_default = function() {
453
456
  ],
454
457
  registerHook: hooks,
455
458
  usePlugins: [
456
- initializePlugin(),
457
- analyzePlugin(),
459
+ initializePlugin({
460
+ bundler: (options === null || options === void 0 ? void 0 : options.bundler) === "experimental-rspack" ? "rspack" : "webpack"
461
+ }),
462
+ analyzePlugin({
463
+ bundler: (options === null || options === void 0 ? void 0 : options.bundler) === "experimental-rspack" ? "rspack" : "webpack"
464
+ }),
458
465
  lintPlugin()
459
466
  ],
460
467
  setup: function(api) {
@@ -505,7 +512,7 @@ var src_default = function() {
505
512
  });
506
513
  }));
507
514
  program.command("deploy").usage("[options]").option("-c --config <config>", i18n.t(localeKeys.command.shared.config)).description(i18n.t(localeKeys.command.deploy.describe)).action(function() {
508
- var _ref = _asyncToGenerator(function(options) {
515
+ var _ref = _asyncToGenerator(function(options2) {
509
516
  var build, deploy;
510
517
  return __generator(this, function(_state) {
511
518
  switch(_state.label){
@@ -530,7 +537,7 @@ var src_default = function() {
530
537
  deploy = _state.sent().deploy;
531
538
  return [
532
539
  4,
533
- deploy(api, options)
540
+ deploy(api, options2)
534
541
  ];
535
542
  case 4:
536
543
  _state.sent();
@@ -541,12 +548,12 @@ var src_default = function() {
541
548
  }
542
549
  });
543
550
  });
544
- return function(options) {
551
+ return function(options2) {
545
552
  return _ref.apply(this, arguments);
546
553
  };
547
554
  }());
548
555
  program.command("new").usage("[options]").description(i18n.t(localeKeys.command.new.describe)).option("--lang <lang>", i18n.t(localeKeys.command.new.lang)).option("-d, --debug", i18n.t(localeKeys.command.new.debug), false).option("-c, --config <config>", i18n.t(localeKeys.command.new.config)).option("--dist-tag <tag>", i18n.t(localeKeys.command.new.distTag)).option("--registry", i18n.t(localeKeys.command.new.registry)).action(function() {
549
- var _ref = _asyncToGenerator(function(options) {
556
+ var _ref = _asyncToGenerator(function(options2) {
550
557
  var MWANewAction;
551
558
  return __generator(this, function(_state) {
552
559
  switch(_state.label){
@@ -559,8 +566,8 @@ var src_default = function() {
559
566
  MWANewAction = _state.sent().MWANewAction;
560
567
  return [
561
568
  4,
562
- MWANewAction(_objectSpreadProps(_objectSpread({}, options), {
563
- locale: options.lang || locale
569
+ MWANewAction(_objectSpreadProps(_objectSpread({}, options2), {
570
+ locale: options2.lang || locale
564
571
  }))
565
572
  ];
566
573
  case 2:
@@ -571,12 +578,12 @@ var src_default = function() {
571
578
  }
572
579
  });
573
580
  });
574
- return function(options) {
581
+ return function(options2) {
575
582
  return _ref.apply(this, arguments);
576
583
  };
577
584
  }());
578
585
  program.command("inspect").description("inspect internal webpack config").option("--env <env>", i18n.t(localeKeys.command.inspect.env), "development").option("--output <output>", i18n.t(localeKeys.command.inspect.output), "/").option("--verbose", i18n.t(localeKeys.command.inspect.verbose)).option("-c --config <config>", i18n.t(localeKeys.command.shared.config)).action(function() {
579
- var _ref = _asyncToGenerator(function(options) {
586
+ var _ref = _asyncToGenerator(function(options2) {
580
587
  var inspect;
581
588
  return __generator(this, function(_state) {
582
589
  switch(_state.label){
@@ -587,14 +594,14 @@ var src_default = function() {
587
594
  ];
588
595
  case 1:
589
596
  inspect = _state.sent().inspect;
590
- inspect(api, options);
597
+ inspect(api, options2);
591
598
  return [
592
599
  2
593
600
  ];
594
601
  }
595
602
  });
596
603
  });
597
- return function(options) {
604
+ return function(options2) {
598
605
  return _ref.apply(this, arguments);
599
606
  };
600
607
  }());
@@ -176,16 +176,16 @@ var __generator = this && this.__generator || function(thisArg, body) {
176
176
  };
177
177
  import { ensureAbsolutePath, getPort, isDev, isDevCommand } from "@modern-js/utils";
178
178
  import { legacySchema, schema } from "../schema";
179
- import { transformNormalizedConfig } from "../config/initial/transformNormalizedConfig";
180
- import { checkIsLegacyConfig, createDefaultConfig, createLegacyDefaultConfig } from "../config";
181
- var initialize_default = function() {
179
+ import { checkIsLegacyConfig, createDefaultConfig, createLegacyDefaultConfig, transformNormalizedConfig } from "../config";
180
+ var initialize_default = function(param) {
181
+ var bundler = param.bundler;
182
182
  return {
183
183
  name: "@modern-js/plugin-initialize",
184
184
  setup: function setup(api) {
185
185
  var config = function() {
186
186
  var appContext = api.useAppContext();
187
187
  var userConfig = api.useConfigContext();
188
- return checkIsLegacyConfig(userConfig) ? createLegacyDefaultConfig(appContext) : createDefaultConfig(appContext);
188
+ return checkIsLegacyConfig(userConfig) ? createLegacyDefaultConfig(appContext) : createDefaultConfig(appContext, bundler);
189
189
  };
190
190
  var validateSchema = function() {
191
191
  var userConfig = api.useConfigContext();
@@ -198,7 +198,7 @@ var initialize_default = function() {
198
198
  resolvedConfig: function resolvedConfig(param) {
199
199
  var resolved = param.resolved;
200
200
  return _asyncToGenerator(function() {
201
- var ref, appContext, userConfig, port, normalizedConfig;
201
+ var _resolved_output_distPath, appContext, userConfig, port, normalizedConfig;
202
202
  return __generator(this, function(_state) {
203
203
  switch(_state.label){
204
204
  case 0:
@@ -212,35 +212,38 @@ var initialize_default = function() {
212
212
  port = _state.sent();
213
213
  appContext = _objectSpreadProps(_objectSpread({}, appContext), {
214
214
  port: port,
215
- distDirectory: ensureAbsolutePath(appContext.distDirectory, ((ref = resolved.output.distPath) === null || ref === void 0 ? void 0 : ref.root) || "dist")
215
+ distDirectory: ensureAbsolutePath(appContext.distDirectory, ((_resolved_output_distPath = resolved.output.distPath) === null || _resolved_output_distPath === void 0 ? void 0 : _resolved_output_distPath.root) || "dist")
216
216
  });
217
217
  api.setAppContext(appContext);
218
218
  normalizedConfig = checkIsLegacyConfig(resolved) ? transformNormalizedConfig(resolved) : resolved;
219
+ resolved._raw = userConfig;
220
+ resolved.server = _objectSpreadProps(_objectSpread({}, normalizedConfig.server || {}), {
221
+ port: port
222
+ });
223
+ resolved.autoLoadPlugins = normalizedConfig.autoLoadPlugins || false;
224
+ stabilizeConfig(resolved, normalizedConfig, [
225
+ "source",
226
+ "bff",
227
+ "dev",
228
+ "html",
229
+ "output",
230
+ "tools",
231
+ "testing",
232
+ "plugins",
233
+ "builderPlugins",
234
+ "runtime",
235
+ "runtimeByEntries",
236
+ "deploy",
237
+ "performance"
238
+ ]);
239
+ if (bundler === "webpack") {
240
+ resolved.security = normalizedConfig.security || {};
241
+ resolved.experiments = normalizedConfig.experiments;
242
+ }
219
243
  return [
220
244
  2,
221
245
  {
222
- resolved: {
223
- _raw: userConfig,
224
- source: normalizedConfig.source || {},
225
- server: _objectSpreadProps(_objectSpread({}, normalizedConfig.server || {}), {
226
- port: port
227
- }),
228
- bff: normalizedConfig.bff || {},
229
- dev: normalizedConfig.dev || {},
230
- html: normalizedConfig.html || {},
231
- output: normalizedConfig.output || {},
232
- security: normalizedConfig.security || {},
233
- tools: normalizedConfig.tools || {},
234
- testing: normalizedConfig.testing || {},
235
- plugins: normalizedConfig.plugins || [],
236
- builderPlugins: normalizedConfig.builderPlugins || [],
237
- runtime: normalizedConfig.runtime || {},
238
- runtimeByEntries: normalizedConfig.runtimeByEntries || {},
239
- deploy: normalizedConfig.deploy || {},
240
- performance: normalizedConfig.performance || {},
241
- experiments: normalizedConfig.experiments || {},
242
- autoLoadPlugins: normalizedConfig.autoLoadPlugins || false
243
- }
246
+ resolved: resolved
244
247
  }
245
248
  ];
246
249
  }
@@ -251,6 +254,11 @@ var initialize_default = function() {
251
254
  }
252
255
  };
253
256
  };
257
+ function stabilizeConfig(resolve, config, keys) {
258
+ keys.forEach(function(key) {
259
+ resolve[key] = config[key] || {};
260
+ });
261
+ }
254
262
  function getServerPort(config) {
255
263
  return _getServerPort.apply(this, arguments);
256
264
  }
@@ -21,7 +21,7 @@ var ZH_LOCALE = {
21
21
  describe: "部署应用命令"
22
22
  },
23
23
  new: {
24
- describe: "MWA 项目中执行生成器",
24
+ describe: "Web App 项目中执行生成器",
25
25
  debug: "开启 Debug 模式,打印调试日志信息",
26
26
  config: "生成器运行默认配置(JSON 字符串)",
27
27
  distTag: "生成器使用特殊的 npm Tag 版本",
@@ -0,0 +1 @@
1
+ "use strict";
@@ -275,11 +275,11 @@ var safeReplacer = function() {
275
275
  };
276
276
  var emitResolvedConfig = function() {
277
277
  var _ref = _asyncToGenerator(function(appDirectory, resolvedConfig) {
278
- var ref, outputPath;
278
+ var _resolvedConfig_output_distPath, outputPath;
279
279
  return __generator(this, function(_state) {
280
280
  switch(_state.label){
281
281
  case 0:
282
- outputPath = path.join(appDirectory, ((ref = resolvedConfig.output.distPath) === null || ref === void 0 ? void 0 : ref.root) || "./dist", OUTPUT_CONFIG_FILE);
282
+ outputPath = path.join(appDirectory, ((_resolvedConfig_output_distPath = resolvedConfig.output.distPath) === null || _resolvedConfig_output_distPath === void 0 ? void 0 : _resolvedConfig_output_distPath.root) || "./dist", OUTPUT_CONFIG_FILE);
283
283
  return [
284
284
  4,
285
285
  fs.writeJSON(outputPath, resolvedConfig, {
@@ -179,7 +179,7 @@ function getServerInternalPlugins(api) {
179
179
  }
180
180
  function _getServerInternalPlugins() {
181
181
  _getServerInternalPlugins = _asyncToGenerator(function(api) {
182
- var hookRunners, ref, serverPlugins, serverInternalPlugins;
182
+ var hookRunners, _ref, serverPlugins, serverInternalPlugins;
183
183
  return __generator(this, function(_state) {
184
184
  switch(_state.label){
185
185
  case 0:
@@ -191,7 +191,7 @@ function _getServerInternalPlugins() {
191
191
  })
192
192
  ];
193
193
  case 1:
194
- ref = _state.sent(), serverPlugins = ref.plugins;
194
+ _ref = _state.sent(), serverPlugins = _ref.plugins;
195
195
  serverInternalPlugins = serverPlugins.reduce(function(result, plugin) {
196
196
  return Object.assign(result, plugin);
197
197
  }, {});
@@ -35,14 +35,12 @@ export declare const fileSystemRoutes: ({
35
35
  ssrMode,
36
36
  nestedRoutesEntry,
37
37
  entryName,
38
- internalDirectory,
39
- splitRoutesChunks
38
+ internalDirectory
40
39
  }: {
41
40
  routes: RouteLegacy[] | (NestedRoute | PageRoute)[];
42
41
  ssrMode?: SSRMode | undefined;
43
42
  nestedRoutesEntry?: string | undefined;
44
43
  entryName: string;
45
44
  internalDirectory: string;
46
- splitRoutesChunks?: boolean | undefined;
47
45
  }) => Promise<string>;
48
46
  export declare function ssrLoaderCombinedModule(entrypoints: Entrypoint[], entrypoint: Entrypoint, config: AppNormalizedConfig<'shared'>, appContext: IAppContext): string | null;
@@ -7,7 +7,6 @@ export type BuilderOutputConfig = UnwrapBuilderConfig<BuilderConfig, 'output'>;
7
7
  export type RsBuilderOutputConfig = UnwrapBuilderConfig<RsBuilderConfig, 'output'>;
8
8
  export interface SharedOutputConfig extends BuilderSharedOutputConfig {
9
9
  ssg?: SSGConfig;
10
- splitRoutesChunks?: boolean;
11
10
  disableNodePolyfill?: boolean;
12
11
  }
13
12
  export interface OutputUserConfig extends BuilderOutputConfig, SharedOutputConfig {}
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "2.8.1-alpha.0",
14
+ "version": "2.8.1-alpha.1",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/cjs/index.js",
@@ -66,21 +66,21 @@
66
66
  "esbuild": "0.15.7",
67
67
  "@modern-js/builder": "2.8.0",
68
68
  "@modern-js/builder-shared": "2.8.0",
69
- "@modern-js/builder-webpack-provider": "2.8.0",
69
+ "@modern-js/builder-plugin-esbuild": "2.8.0",
70
70
  "@modern-js/builder-plugin-node-polyfill": "2.8.0",
71
+ "@modern-js/builder-webpack-provider": "2.8.0",
71
72
  "@modern-js/core": "2.8.0",
72
- "@modern-js/new-action": "2.8.0",
73
+ "@modern-js/node-bundle-require": "2.8.0",
73
74
  "@modern-js/plugin": "2.8.0",
74
- "@modern-js/plugin-data-loader": "2.8.0",
75
+ "@modern-js/plugin-i18n": "2.8.0",
75
76
  "@modern-js/plugin-lint": "2.8.0",
77
+ "@modern-js/plugin-data-loader": "2.8.0",
78
+ "@modern-js/server": "2.8.0",
76
79
  "@modern-js/prod-server": "2.8.0",
77
- "@modern-js/node-bundle-require": "2.8.0",
78
- "@modern-js/builder-plugin-esbuild": "2.8.0",
79
80
  "@modern-js/types": "2.8.0",
80
- "@modern-js/upgrade": "2.8.0",
81
- "@modern-js/server": "2.8.0",
82
81
  "@modern-js/utils": "2.8.0",
83
- "@modern-js/plugin-i18n": "2.8.0"
82
+ "@modern-js/new-action": "2.8.0",
83
+ "@modern-js/upgrade": "2.8.0"
84
84
  },
85
85
  "devDependencies": {
86
86
  "@types/babel__traverse": "^7.14.2",
@@ -89,11 +89,11 @@
89
89
  "jest": "^27",
90
90
  "typescript": "^4",
91
91
  "webpack": "^5.75.0",
92
- "@modern-js/server-core": "2.8.0",
92
+ "@modern-js/builder-plugin-swc": "2.8.0",
93
93
  "@modern-js/builder-rspack-provider": "2.8.0",
94
+ "@modern-js/server-core": "2.8.0",
94
95
  "@scripts/build": "2.8.0",
95
- "@scripts/jest-config": "2.8.0",
96
- "@modern-js/builder-plugin-swc": "2.8.0"
96
+ "@scripts/jest-config": "2.8.0"
97
97
  },
98
98
  "peerDependencies": {
99
99
  "@modern-js/builder-rspack-provider": "^2.8.0"
@@ -1,17 +0,0 @@
1
- import { slash } from "@modern-js/utils";
2
- function loader(source) {
3
- this.cacheable();
4
- const { target } = this._compiler.options;
5
- if (target === "node" || Array.isArray(target) && target.includes("node")) {
6
- return source;
7
- }
8
- const { resourcePath } = this;
9
- const code = `
10
- export { default } from "${slash(resourcePath)}";
11
- `;
12
- return code;
13
- }
14
- var routerLoader_default = loader;
15
- export {
16
- routerLoader_default as default
17
- };
@@ -1,30 +0,0 @@
1
- class HtmlAsyncChunkPlugin {
2
- constructor(htmlWebpackPlugin) {
3
- this.name = "HtmlAsyncChunkPlugin";
4
- this.htmlWebpackPlugin = htmlWebpackPlugin;
5
- }
6
- apply(compiler) {
7
- compiler.hooks.compilation.tap(
8
- this.name,
9
- (compilation) => {
10
- const hooks = this.htmlWebpackPlugin.getHooks(compilation);
11
- hooks.alterAssetTagGroups.tap(this.name, (assets) => {
12
- const tags = [...assets.headTags, ...assets.bodyTags];
13
- for (const tag of tags) {
14
- if (tag.tagName === "script") {
15
- const { attributes } = tag;
16
- if (attributes && attributes.defer === true) {
17
- attributes.async = true;
18
- delete attributes.defer;
19
- }
20
- }
21
- }
22
- return assets;
23
- });
24
- }
25
- );
26
- }
27
- }
28
- export {
29
- HtmlAsyncChunkPlugin
30
- };
@@ -1,37 +0,0 @@
1
- class BottomTemplatePlugin {
2
- constructor(htmlWebpackPlugin) {
3
- this.bottomTemplateReg = /<!--<\?-\s*bottomTemplate\s*\?>-->/;
4
- this.bodyRegExp = /(<\/\s*body\s*>)/i;
5
- this.htmlWebpackPlugin = htmlWebpackPlugin;
6
- this.name = "bottom-template";
7
- }
8
- apply(compiler) {
9
- compiler.hooks.compilation.tap(
10
- this.name,
11
- (compilation) => {
12
- this.htmlWebpackPlugin.getHooks(compilation).beforeEmit.tap(this.name, (data) => {
13
- var _a;
14
- if (!((_a = data.plugin.options) == null ? void 0 : _a.__internal__)) {
15
- return data;
16
- }
17
- if (this.bottomTemplateReg.test(data.html)) {
18
- data.html = data.html.replace(this.bottomTemplateReg, "");
19
- const { bottomTemplate } = data.plugin.options;
20
- if (bottomTemplate) {
21
- data.html = data.html.replace(
22
- this.bodyRegExp,
23
- (match) => `
24
- ${bottomTemplate}
25
- ${match}`
26
- );
27
- }
28
- }
29
- return data;
30
- });
31
- }
32
- );
33
- }
34
- }
35
- export {
36
- BottomTemplatePlugin
37
- };
@@ -1,16 +0,0 @@
1
- import { initHtmlConfig, initSourceConfig, initToolsConfig } from "./inits";
2
- import { transformNormalizedConfig } from "./transformNormalizedConfig";
3
- function checkIsLegacyConfig(config) {
4
- return Boolean(config.legacy);
5
- }
6
- function initialNormalizedConfig(config, appContext) {
7
- initHtmlConfig(config, appContext);
8
- initSourceConfig(config, appContext);
9
- initToolsConfig(config);
10
- return config;
11
- }
12
- export {
13
- checkIsLegacyConfig,
14
- initialNormalizedConfig,
15
- transformNormalizedConfig
16
- };
@@ -1,13 +0,0 @@
1
- import { slash } from "@modern-js/utils";
2
- function loader(source) {
3
- this.cacheable();
4
- var target = this._compiler.options.target;
5
- if (target === "node" || Array.isArray(target) && target.includes("node")) {
6
- return source;
7
- }
8
- var resourcePath = this.resourcePath;
9
- var code = '\n export { default } from "'.concat(slash(resourcePath), '";\n ');
10
- return code;
11
- }
12
- var routerLoader_default = loader;
13
- export { routerLoader_default as default };
@@ -1,19 +0,0 @@
1
- function createHtmlConfig(config) {
2
- var _output = config.output, disableHtmlFolder = _output.disableHtmlFolder, favicon = _output.favicon, faviconByEntries = _output.faviconByEntries, inject = _output.inject, injectByEntries = _output.injectByEntries, meta = _output.meta, metaByEntries = _output.metaByEntries, mountId = _output.mountId, title = _output.title, titleByEntries = _output.titleByEntries, templateParameters = _output.templateParameters, templateParametersByEntries = _output.templateParametersByEntries, crossorigin = _output.crossorigin;
3
- return {
4
- disableHtmlFolder: disableHtmlFolder,
5
- favicon: favicon,
6
- faviconByEntries: faviconByEntries,
7
- inject: inject,
8
- injectByEntries: injectByEntries,
9
- meta: meta,
10
- metaByEntries: metaByEntries,
11
- mountId: mountId,
12
- title: title,
13
- titleByEntries: titleByEntries,
14
- crossorigin: crossorigin,
15
- templateParameters: templateParameters,
16
- templateParametersByEntries: templateParametersByEntries
17
- };
18
- }
19
- export { createHtmlConfig };
@@ -1,12 +0,0 @@
1
- import { initHtmlConfig, initSourceConfig, initToolsConfig } from "./inits";
2
- import { transformNormalizedConfig } from "./transformNormalizedConfig";
3
- function checkIsLegacyConfig(config) {
4
- return Boolean(config.legacy);
5
- }
6
- function initialNormalizedConfig(config, appContext) {
7
- initHtmlConfig(config, appContext);
8
- initSourceConfig(config, appContext);
9
- initToolsConfig(config);
10
- return config;
11
- }
12
- export { checkIsLegacyConfig, initialNormalizedConfig, transformNormalizedConfig };