@module-federation/modern-js 0.0.0-release-v0-22-0-20251218063649 → 0.0.0-release-v0-23-0-20260123023720

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 (36) hide show
  1. package/dist/cjs/cli/configPlugin.js +281 -254
  2. package/dist/cjs/cli/index.js +6 -4
  3. package/dist/cjs/cli/mfRuntimePlugins/inject-node-fetch.js +3 -3
  4. package/dist/cjs/cli/mfRuntimePlugins/resolve-entry-ipv4.js +5 -5
  5. package/dist/cjs/cli/mfRuntimePlugins/shared-strategy.js +5 -5
  6. package/dist/cjs/cli/server/data-fetch-server-plugin.js +3 -3
  7. package/dist/cjs/cli/ssrPlugin.js +6 -9
  8. package/dist/cjs/cli/utils.js +3 -3
  9. package/dist/cjs/constant.js +3 -3
  10. package/dist/cjs/interfaces/bundler.js +2 -2
  11. package/dist/cjs/logger.js +3 -3
  12. package/dist/cjs/react/index.js +7 -9
  13. package/dist/cjs/react/plugin.js +10 -12
  14. package/dist/cjs/react/v18.js +7 -9
  15. package/dist/cjs/react/v19.js +7 -9
  16. package/dist/cjs/runtime/index.js +7 -9
  17. package/dist/cjs/server/fileCache.js +3 -3
  18. package/dist/cjs/server/index.js +3 -3
  19. package/dist/cjs/server/staticMiddleware.js +3 -3
  20. package/dist/cjs/ssr-runtime/SSRLiveReload.js +5 -4
  21. package/dist/cjs/ssr-runtime/devPlugin.js +13 -5
  22. package/dist/cjs/ssr-runtime/injectDataFetchFunctionPlugin.js +3 -3
  23. package/dist/cjs/types/index.js +2 -2
  24. package/dist/esm/cli/configPlugin.mjs +38 -16
  25. package/dist/esm/cli/index.mjs +2 -1
  26. package/dist/esm/cli/mfRuntimePlugins/resolve-entry-ipv4.mjs +2 -2
  27. package/dist/esm/cli/ssrPlugin.mjs +3 -6
  28. package/dist/esm/ssr-runtime/SSRLiveReload.mjs +2 -1
  29. package/dist/esm/ssr-runtime/devPlugin.mjs +9 -2
  30. package/dist/esm-node/cli/configPlugin.mjs +36 -9
  31. package/dist/esm-node/cli/index.mjs +3 -1
  32. package/dist/esm-node/cli/mfRuntimePlugins/resolve-entry-ipv4.mjs +2 -2
  33. package/dist/esm-node/cli/ssrPlugin.mjs +3 -6
  34. package/dist/esm-node/ssr-runtime/SSRLiveReload.mjs +2 -1
  35. package/dist/esm-node/ssr-runtime/devPlugin.mjs +10 -2
  36. package/package.json +18 -18
@@ -1,5 +1,19 @@
1
1
  "use strict";
2
- var __webpack_require__ = {};
2
+ var __webpack_modules__ = {
3
+ jiti (module) {
4
+ module.exports = require("jiti");
5
+ }
6
+ };
7
+ var __webpack_module_cache__ = {};
8
+ function __webpack_require__(moduleId) {
9
+ var cachedModule = __webpack_module_cache__[moduleId];
10
+ if (void 0 !== cachedModule) return cachedModule.exports;
11
+ var module = __webpack_module_cache__[moduleId] = {
12
+ exports: {}
13
+ };
14
+ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
15
+ return module.exports;
16
+ }
3
17
  (()=>{
4
18
  __webpack_require__.n = (module)=>{
5
19
  var getter = module && module.__esModule ? ()=>module['default'] : ()=>module;
@@ -22,7 +36,7 @@ var __webpack_require__ = {};
22
36
  })();
23
37
  (()=>{
24
38
  __webpack_require__.r = (exports1)=>{
25
- if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
39
+ if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
26
40
  value: 'Module'
27
41
  });
28
42
  Object.defineProperty(exports1, '__esModule', {
@@ -31,275 +45,288 @@ var __webpack_require__ = {};
31
45
  };
32
46
  })();
33
47
  var __webpack_exports__ = {};
34
- __webpack_require__.r(__webpack_exports__);
35
- __webpack_require__.d(__webpack_exports__, {
36
- patchMFConfig: ()=>patchMFConfig,
37
- default: ()=>configPlugin,
38
- getMFConfig: ()=>getMFConfig,
39
- isWebTarget: ()=>external_utils_js_namespaceObject.isWebTarget,
40
- moduleFederationConfigPlugin: ()=>moduleFederationConfigPlugin,
41
- addMyTypes2Ignored: ()=>addMyTypes2Ignored,
42
- skipByTarget: ()=>external_utils_js_namespaceObject.skipByTarget,
43
- setEnv: ()=>setEnv,
44
- patchBundlerConfig: ()=>patchBundlerConfig
45
- });
46
- const external_path_namespaceObject = require("path");
47
- var external_path_default = /*#__PURE__*/ __webpack_require__.n(external_path_namespaceObject);
48
- const external_utils_js_namespaceObject = require("./utils.js");
49
- const sdk_namespaceObject = require("@module-federation/sdk");
50
- const node_bundle_require_namespaceObject = require("@modern-js/node-bundle-require");
51
- const external_constant_js_namespaceObject = require("../constant.js");
52
- const utils_namespaceObject = require("@module-federation/rsbuild-plugin/utils");
53
- const external_logger_js_namespaceObject = require("../logger.js");
54
- var external_logger_js_default = /*#__PURE__*/ __webpack_require__.n(external_logger_js_namespaceObject);
55
- const defaultPath = external_path_default().resolve(process.cwd(), 'module-federation.config.ts');
56
- function setEnv(enableSSR) {
57
- if (enableSSR) process.env['MF_SSR_PRJ'] = 'true';
58
- }
59
- const getMFConfig = async (userConfig)=>{
60
- const { config, configPath } = userConfig;
61
- if (config) return config;
62
- const mfConfigPath = configPath ? configPath : defaultPath;
63
- const preBundlePath = await (0, node_bundle_require_namespaceObject.bundle)(mfConfigPath);
64
- const mfConfig = (await import(preBundlePath)).default;
65
- return mfConfig;
66
- };
67
- const injectRuntimePlugins = (runtimePlugin, runtimePlugins)=>{
68
- const pluginName = 'string' == typeof runtimePlugin ? runtimePlugin : runtimePlugin[0];
69
- const hasPlugin = runtimePlugins.some((existingPlugin)=>{
70
- if ('string' == typeof existingPlugin) return existingPlugin === pluginName;
71
- return existingPlugin[0] === pluginName;
48
+ (()=>{
49
+ __webpack_require__.r(__webpack_exports__);
50
+ __webpack_require__.d(__webpack_exports__, {
51
+ patchMFConfig: ()=>patchMFConfig,
52
+ default: ()=>configPlugin,
53
+ getMFConfig: ()=>getMFConfig,
54
+ isWebTarget: ()=>external_utils_js_namespaceObject.isWebTarget,
55
+ moduleFederationConfigPlugin: ()=>moduleFederationConfigPlugin,
56
+ addMyTypes2Ignored: ()=>addMyTypes2Ignored,
57
+ skipByTarget: ()=>external_utils_js_namespaceObject.skipByTarget,
58
+ setEnv: ()=>setEnv,
59
+ patchBundlerConfig: ()=>patchBundlerConfig
72
60
  });
73
- if (!hasPlugin) runtimePlugins.push(runtimePlugin);
74
- };
75
- const replaceRemoteUrl = (mfConfig, remoteIpStrategy)=>{
76
- if (remoteIpStrategy && 'inherit' === remoteIpStrategy) return;
77
- if (!mfConfig.remotes) return;
78
- const ipv4 = (0, external_utils_js_namespaceObject.getIPV4)();
79
- const handleRemoteObject = (remoteObject)=>{
80
- Object.keys(remoteObject).forEach((remoteKey)=>{
81
- const remote = remoteObject[remoteKey];
82
- if (Array.isArray(remote)) return;
83
- if ('string' == typeof remote && remote.includes(external_constant_js_namespaceObject.LOCALHOST)) remoteObject[remoteKey] = remote.replace(external_constant_js_namespaceObject.LOCALHOST, ipv4);
84
- if ('object' == typeof remote && !Array.isArray(remote.external) && remote.external.includes(external_constant_js_namespaceObject.LOCALHOST)) remote.external = remote.external.replace(external_constant_js_namespaceObject.LOCALHOST, ipv4);
61
+ const external_path_namespaceObject = require("path");
62
+ var external_path_default = /*#__PURE__*/ __webpack_require__.n(external_path_namespaceObject);
63
+ const external_utils_js_namespaceObject = require("./utils.js");
64
+ const sdk_namespaceObject = require("@module-federation/sdk");
65
+ const external_constant_js_namespaceObject = require("../constant.js");
66
+ const utils_namespaceObject = require("@module-federation/rsbuild-plugin/utils");
67
+ const external_logger_js_namespaceObject = require("../logger.js");
68
+ var external_logger_js_default = /*#__PURE__*/ __webpack_require__.n(external_logger_js_namespaceObject);
69
+ const defaultPath = external_path_default().resolve(process.cwd(), 'module-federation.config.ts');
70
+ function setEnv(enableSSR) {
71
+ if (enableSSR) process.env['MF_SSR_PRJ'] = 'true';
72
+ }
73
+ const getMFConfig = async (userConfig)=>{
74
+ const { config, configPath } = userConfig;
75
+ if (config) return config;
76
+ const mfConfigPath = configPath ? configPath : defaultPath;
77
+ const { createJiti } = __webpack_require__("jiti");
78
+ const jit = createJiti(__filename, {
79
+ interopDefault: true,
80
+ esmResolve: true
85
81
  });
82
+ const configModule = await jit(mfConfigPath);
83
+ const resolvedConfig = configModule && 'object' == typeof configModule && 'default' in configModule ? configModule.default : configModule;
84
+ return resolvedConfig;
86
85
  };
87
- if (Array.isArray(mfConfig.remotes)) mfConfig.remotes.forEach((remoteObject)=>{
88
- if ('string' == typeof remoteObject) return;
89
- handleRemoteObject(remoteObject);
90
- });
91
- else if ('string' != typeof mfConfig.remotes) handleRemoteObject(mfConfig.remotes);
92
- };
93
- const patchDTSConfig = (mfConfig, isServer)=>{
94
- if (isServer) return;
95
- const ModernJSRuntime = '@module-federation/modern-js/runtime';
96
- if (false !== mfConfig.dts) {
97
- var _mfConfig_dts, _mfConfig_dts1;
98
- if ('boolean' == typeof mfConfig.dts || void 0 === mfConfig.dts) mfConfig.dts = {
99
- consumeTypes: {
100
- runtimePkgs: [
101
- ModernJSRuntime
102
- ]
103
- }
86
+ const injectRuntimePlugins = (runtimePlugin, runtimePlugins)=>{
87
+ const pluginName = 'string' == typeof runtimePlugin ? runtimePlugin : runtimePlugin[0];
88
+ const hasPlugin = runtimePlugins.some((existingPlugin)=>{
89
+ if ('string' == typeof existingPlugin) return existingPlugin === pluginName;
90
+ return existingPlugin[0] === pluginName;
91
+ });
92
+ if (!hasPlugin) runtimePlugins.push(runtimePlugin);
93
+ };
94
+ const replaceRemoteUrl = (mfConfig, remoteIpStrategy)=>{
95
+ if (remoteIpStrategy && 'inherit' === remoteIpStrategy) return;
96
+ if (!mfConfig.remotes) return;
97
+ const ipv4 = (0, external_utils_js_namespaceObject.getIPV4)();
98
+ const handleRemoteObject = (remoteObject)=>{
99
+ Object.keys(remoteObject).forEach((remoteKey)=>{
100
+ const remote = remoteObject[remoteKey];
101
+ if (Array.isArray(remote)) return;
102
+ if ('string' == typeof remote && remote.includes(external_constant_js_namespaceObject.LOCALHOST)) remoteObject[remoteKey] = remote.replace(external_constant_js_namespaceObject.LOCALHOST, ipv4);
103
+ if ('object' == typeof remote && !Array.isArray(remote.external) && remote.external.includes(external_constant_js_namespaceObject.LOCALHOST)) remote.external = remote.external.replace(external_constant_js_namespaceObject.LOCALHOST, ipv4);
104
+ });
104
105
  };
105
- else if ((null == (_mfConfig_dts = mfConfig.dts) ? void 0 : _mfConfig_dts.consumeTypes) || (null == (_mfConfig_dts1 = mfConfig.dts) ? void 0 : _mfConfig_dts1.consumeTypes) === void 0) {
106
- var _mfConfig_dts2;
107
- if ('boolean' == typeof mfConfig.dts.consumeTypes || (null == (_mfConfig_dts2 = mfConfig.dts) ? void 0 : _mfConfig_dts2.consumeTypes) === void 0) mfConfig.dts.consumeTypes = {
108
- runtimePkgs: [
109
- ModernJSRuntime
110
- ]
106
+ if (Array.isArray(mfConfig.remotes)) mfConfig.remotes.forEach((remoteObject)=>{
107
+ if ('string' == typeof remoteObject) return;
108
+ handleRemoteObject(remoteObject);
109
+ });
110
+ else if ('string' != typeof mfConfig.remotes) handleRemoteObject(mfConfig.remotes);
111
+ };
112
+ const patchDTSConfig = (mfConfig, isServer)=>{
113
+ if (isServer) return;
114
+ const ModernJSRuntime = '@module-federation/modern-js/runtime';
115
+ if (false !== mfConfig.dts) {
116
+ var _mfConfig_dts, _mfConfig_dts1;
117
+ if ('boolean' == typeof mfConfig.dts || void 0 === mfConfig.dts) mfConfig.dts = {
118
+ consumeTypes: {
119
+ runtimePkgs: [
120
+ ModernJSRuntime
121
+ ]
122
+ }
111
123
  };
112
- else {
113
- mfConfig.dts.consumeTypes.runtimePkgs = mfConfig.dts.consumeTypes.runtimePkgs || [];
114
- if (!mfConfig.dts.consumeTypes.runtimePkgs.includes(ModernJSRuntime)) mfConfig.dts.consumeTypes.runtimePkgs.push(ModernJSRuntime);
124
+ else if ((null == (_mfConfig_dts = mfConfig.dts) ? void 0 : _mfConfig_dts.consumeTypes) || (null == (_mfConfig_dts1 = mfConfig.dts) ? void 0 : _mfConfig_dts1.consumeTypes) === void 0) {
125
+ var _mfConfig_dts2;
126
+ if ('boolean' == typeof mfConfig.dts.consumeTypes || (null == (_mfConfig_dts2 = mfConfig.dts) ? void 0 : _mfConfig_dts2.consumeTypes) === void 0) mfConfig.dts.consumeTypes = {
127
+ runtimePkgs: [
128
+ ModernJSRuntime
129
+ ]
130
+ };
131
+ else {
132
+ mfConfig.dts.consumeTypes.runtimePkgs = mfConfig.dts.consumeTypes.runtimePkgs || [];
133
+ if (!mfConfig.dts.consumeTypes.runtimePkgs.includes(ModernJSRuntime)) mfConfig.dts.consumeTypes.runtimePkgs.push(ModernJSRuntime);
134
+ }
115
135
  }
116
136
  }
117
- }
118
- };
119
- const patchMFConfig = (mfConfig, isServer, remoteIpStrategy, enableSSR)=>{
120
- replaceRemoteUrl(mfConfig, remoteIpStrategy);
121
- (0, utils_namespaceObject.addDataFetchExposes)(mfConfig.exposes, isServer);
122
- if (void 0 === mfConfig.remoteType) mfConfig.remoteType = "script";
123
- if (!mfConfig.name) throw new Error(`${external_constant_js_namespaceObject.PLUGIN_IDENTIFIER} mfConfig.name can not be empty!`);
124
- const runtimePlugins = [
125
- ...mfConfig.runtimePlugins || []
126
- ];
127
- patchDTSConfig(mfConfig, isServer);
128
- injectRuntimePlugins(require.resolve('@module-federation/modern-js/shared-strategy'), runtimePlugins);
129
- if (enableSSR && (0, external_utils_js_namespaceObject.isDev)()) injectRuntimePlugins(require.resolve('@module-federation/modern-js/resolve-entry-ipv4'), runtimePlugins);
130
- if (isServer) {
131
- injectRuntimePlugins(require.resolve('@module-federation/node/runtimePlugin'), runtimePlugins);
132
- if ((0, external_utils_js_namespaceObject.isDev)()) injectRuntimePlugins(require.resolve('@module-federation/node/record-dynamic-remote-entry-hash-plugin'), runtimePlugins);
133
- injectRuntimePlugins(require.resolve('@module-federation/modern-js/inject-node-fetch'), runtimePlugins);
134
- if (mfConfig.library) {
135
- if (!mfConfig.library.type) mfConfig.library.type = 'commonjs-module';
136
- if (!mfConfig.library.name) mfConfig.library.name = mfConfig.name;
137
- } else mfConfig.library = {
138
- type: 'commonjs-module',
139
- name: mfConfig.name
140
- };
141
- }
142
- mfConfig.runtimePlugins = runtimePlugins;
143
- if (!isServer) {
144
- var _mfConfig_library;
145
- if ((null == (_mfConfig_library = mfConfig.library) ? void 0 : _mfConfig_library.type) === 'commonjs-module') mfConfig.library.type = 'global';
137
+ };
138
+ const patchMFConfig = (mfConfig, isServer, remoteIpStrategy, enableSSR)=>{
139
+ replaceRemoteUrl(mfConfig, remoteIpStrategy);
140
+ (0, utils_namespaceObject.addDataFetchExposes)(mfConfig.exposes, isServer);
141
+ if (void 0 === mfConfig.remoteType) mfConfig.remoteType = "script";
142
+ if (!mfConfig.name) throw new Error(`${external_constant_js_namespaceObject.PLUGIN_IDENTIFIER} mfConfig.name can not be empty!`);
143
+ const runtimePlugins = [
144
+ ...mfConfig.runtimePlugins || []
145
+ ];
146
+ patchDTSConfig(mfConfig, isServer);
147
+ injectRuntimePlugins(require.resolve('@module-federation/modern-js/shared-strategy'), runtimePlugins);
148
+ if (enableSSR && (0, external_utils_js_namespaceObject.isDev)()) injectRuntimePlugins(require.resolve('@module-federation/modern-js/resolve-entry-ipv4'), runtimePlugins);
149
+ if (isServer) {
150
+ injectRuntimePlugins(require.resolve('@module-federation/node/runtimePlugin'), runtimePlugins);
151
+ if ((0, external_utils_js_namespaceObject.isDev)()) injectRuntimePlugins(require.resolve('@module-federation/node/record-dynamic-remote-entry-hash-plugin'), runtimePlugins);
152
+ injectRuntimePlugins(require.resolve('@module-federation/modern-js/inject-node-fetch'), runtimePlugins);
153
+ if (mfConfig.library) {
154
+ if (!mfConfig.library.type) mfConfig.library.type = 'commonjs-module';
155
+ if (!mfConfig.library.name) mfConfig.library.name = mfConfig.name;
156
+ } else mfConfig.library = {
157
+ type: 'commonjs-module',
158
+ name: mfConfig.name
159
+ };
160
+ }
161
+ mfConfig.runtimePlugins = runtimePlugins;
162
+ if (!isServer) {
163
+ var _mfConfig_library;
164
+ if ((null == (_mfConfig_library = mfConfig.library) ? void 0 : _mfConfig_library.type) === 'commonjs-module') mfConfig.library.type = 'global';
165
+ return mfConfig;
166
+ }
167
+ mfConfig.dts = false;
168
+ mfConfig.dev = false;
146
169
  return mfConfig;
170
+ };
171
+ function patchIgnoreWarning(chain) {
172
+ const ignoreWarnings = chain.get('ignoreWarnings') || [];
173
+ const ignoredMsgs = [
174
+ "external script",
175
+ 'process.env.WS_NO_BUFFER_UTIL',
176
+ "Can't resolve 'utf-8-validate"
177
+ ];
178
+ ignoreWarnings.push((warning)=>{
179
+ if (ignoredMsgs.some((msg)=>warning.message.includes(msg))) return true;
180
+ return false;
181
+ });
182
+ chain.ignoreWarnings(ignoreWarnings);
147
183
  }
148
- mfConfig.dts = false;
149
- mfConfig.dev = false;
150
- return mfConfig;
151
- };
152
- function patchIgnoreWarning(chain) {
153
- const ignoreWarnings = chain.get('ignoreWarnings') || [];
154
- const ignoredMsgs = [
155
- "external script",
156
- 'process.env.WS_NO_BUFFER_UTIL',
157
- "Can't resolve 'utf-8-validate"
158
- ];
159
- ignoreWarnings.push((warning)=>{
160
- if (ignoredMsgs.some((msg)=>warning.message.includes(msg))) return true;
161
- return false;
162
- });
163
- chain.ignoreWarnings(ignoreWarnings);
164
- }
165
- function addMyTypes2Ignored(chain, mfConfig) {
166
- const watchOptions = chain.get('watchOptions');
167
- if (!watchOptions || !watchOptions.ignored) return void chain.watchOptions({
168
- ignored: /[\\/](?:\.git|node_modules|@mf-types)[\\/]/
169
- });
170
- const ignored = watchOptions.ignored;
171
- const DEFAULT_IGNORED_GLOB = '**/@mf-types/**';
172
- if (Array.isArray(ignored)) {
173
- if (false !== mfConfig.dts && 'object' == typeof mfConfig.dts && 'object' == typeof mfConfig.dts.consumeTypes && mfConfig.dts.consumeTypes.remoteTypesFolder) chain.watchOptions({
184
+ function addMyTypes2Ignored(chain, mfConfig) {
185
+ const watchOptions = chain.get('watchOptions');
186
+ if (!watchOptions || !watchOptions.ignored) return void chain.watchOptions({
187
+ ignored: /[\\/](?:\.git|node_modules|@mf-types)[\\/]/
188
+ });
189
+ const ignored = watchOptions.ignored;
190
+ const DEFAULT_IGNORED_GLOB = '**/@mf-types/**';
191
+ if (Array.isArray(ignored)) {
192
+ if (false !== mfConfig.dts && 'object' == typeof mfConfig.dts && 'object' == typeof mfConfig.dts.consumeTypes && mfConfig.dts.consumeTypes.remoteTypesFolder) chain.watchOptions({
193
+ ...watchOptions,
194
+ ignored: ignored.concat(`**/${mfConfig.dts.consumeTypes.remoteTypesFolder}/**`)
195
+ });
196
+ else chain.watchOptions({
197
+ ...watchOptions,
198
+ ignored: ignored.concat(DEFAULT_IGNORED_GLOB)
199
+ });
200
+ return;
201
+ }
202
+ if ('string' != typeof ignored) return void chain.watchOptions({
174
203
  ...watchOptions,
175
- ignored: ignored.concat(`**/${mfConfig.dts.consumeTypes.remoteTypesFolder}/**`)
204
+ ignored: /[\\/](?:\.git|node_modules|@mf-types)[\\/]/
176
205
  });
177
- else chain.watchOptions({
206
+ chain.watchOptions({
178
207
  ...watchOptions,
179
208
  ignored: ignored.concat(DEFAULT_IGNORED_GLOB)
180
209
  });
181
- return;
182
210
  }
183
- if ('string' != typeof ignored) return void chain.watchOptions({
184
- ...watchOptions,
185
- ignored: /[\\/](?:\.git|node_modules|@mf-types)[\\/]/
186
- });
187
- chain.watchOptions({
188
- ...watchOptions,
189
- ignored: ignored.concat(DEFAULT_IGNORED_GLOB)
190
- });
191
- }
192
- function patchBundlerConfig(options) {
193
- var _modernjsConfig_deploy;
194
- const { chain, modernjsConfig, isServer, mfConfig, enableSSR } = options;
195
- chain.optimization.delete('runtimeChunk');
196
- patchIgnoreWarning(chain);
197
- if (!chain.output.get('chunkLoadingGlobal')) chain.output.chunkLoadingGlobal(`chunk_${mfConfig.name}`);
198
- if (!chain.output.get('uniqueName')) chain.output.uniqueName(mfConfig.name);
199
- const splitChunkConfig = chain.optimization.splitChunks.entries();
200
- if (!isServer) (0, utils_namespaceObject.autoDeleteSplitChunkCacheGroups)(mfConfig, splitChunkConfig);
201
- if (!isServer && enableSSR && splitChunkConfig && 'object' == typeof splitChunkConfig && splitChunkConfig.cacheGroups) {
202
- splitChunkConfig.chunks = 'async';
203
- external_logger_js_default().warn('splitChunks.chunks = async is not allowed with stream SSR mode, it will auto changed to "async"');
204
- }
205
- if ((0, external_utils_js_namespaceObject.isDev)() && 'auto' === chain.output.get('publicPath')) {
206
- var _modernjsConfig_dev, _modernjsConfig_server;
207
- const port = (null == (_modernjsConfig_dev = modernjsConfig.dev) ? void 0 : _modernjsConfig_dev.port) || (null == (_modernjsConfig_server = modernjsConfig.server) ? void 0 : _modernjsConfig_server.port) || 8080;
208
- const publicPath = `http://localhost:${port}/`;
209
- chain.output.publicPath(publicPath);
210
- }
211
- if (isServer && enableSSR) {
212
- const uniqueName = mfConfig.name || chain.output.get('uniqueName');
213
- const chunkFileName = chain.output.get('chunkFilename');
214
- if ('string' == typeof chunkFileName && uniqueName && !chunkFileName.includes(uniqueName)) {
215
- const suffix = `${(0, sdk_namespaceObject.encodeName)(uniqueName)}-[contenthash].js`;
216
- chain.output.chunkFilename(chunkFileName.replace('.js', suffix));
211
+ function patchBundlerConfig(options) {
212
+ var _modernjsConfig_deploy;
213
+ const { chain, modernjsConfig, isServer, mfConfig, enableSSR } = options;
214
+ chain.optimization.delete('runtimeChunk');
215
+ patchIgnoreWarning(chain);
216
+ if (!chain.output.get('chunkLoadingGlobal')) chain.output.chunkLoadingGlobal(`chunk_${mfConfig.name}`);
217
+ if (!chain.output.get('uniqueName')) chain.output.uniqueName(mfConfig.name);
218
+ const splitChunkConfig = chain.optimization.splitChunks.entries();
219
+ if (!isServer) (0, utils_namespaceObject.autoDeleteSplitChunkCacheGroups)(mfConfig, splitChunkConfig);
220
+ if (!isServer && enableSSR && splitChunkConfig && 'object' == typeof splitChunkConfig && splitChunkConfig.cacheGroups) {
221
+ splitChunkConfig.chunks = 'async';
222
+ external_logger_js_default().warn('splitChunks.chunks = async is not allowed with stream SSR mode, it will auto changed to "async"');
223
+ }
224
+ if ((0, external_utils_js_namespaceObject.isDev)() && 'auto' === chain.output.get('publicPath')) {
225
+ var _modernjsConfig_dev, _modernjsConfig_server;
226
+ const port = (null == (_modernjsConfig_dev = modernjsConfig.dev) ? void 0 : _modernjsConfig_dev.port) || (null == (_modernjsConfig_server = modernjsConfig.server) ? void 0 : _modernjsConfig_server.port) || 8080;
227
+ const publicPath = `http://localhost:${port}/`;
228
+ chain.output.publicPath(publicPath);
229
+ }
230
+ if (isServer && enableSSR) {
231
+ const uniqueName = mfConfig.name || chain.output.get('uniqueName');
232
+ const chunkFileName = chain.output.get('chunkFilename');
233
+ if ('string' == typeof chunkFileName && uniqueName && !chunkFileName.includes(uniqueName)) {
234
+ const suffix = `${(0, sdk_namespaceObject.encodeName)(uniqueName)}-[contenthash].js`;
235
+ chain.output.chunkFilename(chunkFileName.replace('.js', suffix));
236
+ }
217
237
  }
238
+ if ((0, external_utils_js_namespaceObject.isDev)() && enableSSR && !isServer) chain.resolve.fallback.set('crypto', false).set('stream', false).set('vm', false);
239
+ if ((null == (_modernjsConfig_deploy = modernjsConfig.deploy) ? void 0 : _modernjsConfig_deploy.microFrontend) && Object.keys(mfConfig.exposes || {}).length) chain.optimization.usedExports(false);
218
240
  }
219
- if ((0, external_utils_js_namespaceObject.isDev)() && enableSSR && !isServer) chain.resolve.fallback.set('crypto', false).set('stream', false).set('vm', false);
220
- if ((null == (_modernjsConfig_deploy = modernjsConfig.deploy) ? void 0 : _modernjsConfig_deploy.microFrontend) && Object.keys(mfConfig.exposes || {}).length) chain.optimization.usedExports(false);
221
- }
222
- const moduleFederationConfigPlugin = (userConfig)=>({
223
- name: '@modern-js/plugin-module-federation-config',
224
- pre: [
225
- '@modern-js/plugin-initialize'
226
- ],
227
- post: [
228
- '@modern-js/plugin-module-federation'
229
- ],
230
- setup: async (api)=>{
231
- var _userConfig_userConfig, _modernjsConfig_server;
232
- const modernjsConfig = api.getConfig();
233
- const mfConfig = await getMFConfig(userConfig.originPluginOptions);
234
- const csrConfig = userConfig.csrConfig || JSON.parse(JSON.stringify(mfConfig));
235
- const ssrConfig = userConfig.ssrConfig || JSON.parse(JSON.stringify(mfConfig));
236
- userConfig.ssrConfig = ssrConfig;
237
- userConfig.csrConfig = csrConfig;
238
- var _userConfig_userConfig_ssr;
239
- const enableSSR = Boolean(null != (_userConfig_userConfig_ssr = null == (_userConfig_userConfig = userConfig.userConfig) ? void 0 : _userConfig_userConfig.ssr) ? _userConfig_userConfig_ssr : Boolean(null == modernjsConfig ? void 0 : null == (_modernjsConfig_server = modernjsConfig.server) ? void 0 : _modernjsConfig_server.ssr));
240
- api.modifyBundlerChain((chain)=>{
241
- const target = chain.get('target');
242
- if ((0, external_utils_js_namespaceObject.skipByTarget)(target)) return;
243
- const isWeb = (0, external_utils_js_namespaceObject.isWebTarget)(target);
244
- addMyTypes2Ignored(chain, isWeb ? csrConfig : ssrConfig);
245
- const targetMFConfig = isWeb ? csrConfig : ssrConfig;
246
- patchMFConfig(targetMFConfig, !isWeb, userConfig.remoteIpStrategy || 'ipv4', enableSSR);
247
- patchBundlerConfig({
248
- chain,
249
- isServer: !isWeb,
250
- modernjsConfig,
251
- mfConfig,
252
- enableSSR
241
+ const moduleFederationConfigPlugin = (userConfig)=>({
242
+ name: '@modern-js/plugin-module-federation-config',
243
+ pre: [
244
+ '@modern-js/plugin-initialize'
245
+ ],
246
+ post: [
247
+ '@modern-js/plugin-module-federation'
248
+ ],
249
+ setup: async (api)=>{
250
+ var _userConfig_userConfig, _modernjsConfig_server;
251
+ const modernjsConfig = api.getConfig();
252
+ const mfConfig = await getMFConfig(userConfig.originPluginOptions);
253
+ const csrConfig = userConfig.csrConfig || JSON.parse(JSON.stringify(mfConfig));
254
+ const ssrConfig = userConfig.ssrConfig || JSON.parse(JSON.stringify(mfConfig));
255
+ userConfig.ssrConfig = ssrConfig;
256
+ userConfig.csrConfig = csrConfig;
257
+ var _ref;
258
+ const enableSSR = Boolean(null != (_ref = null == (_userConfig_userConfig = userConfig.userConfig) ? void 0 : _userConfig_userConfig.ssr) ? _ref : Boolean(null == modernjsConfig ? void 0 : null == (_modernjsConfig_server = modernjsConfig.server) ? void 0 : _modernjsConfig_server.ssr));
259
+ api.modifyBundlerChain((chain)=>{
260
+ const target = chain.get('target');
261
+ if ((0, external_utils_js_namespaceObject.skipByTarget)(target)) return;
262
+ const isWeb = (0, external_utils_js_namespaceObject.isWebTarget)(target);
263
+ addMyTypes2Ignored(chain, isWeb ? csrConfig : ssrConfig);
264
+ const targetMFConfig = isWeb ? csrConfig : ssrConfig;
265
+ patchMFConfig(targetMFConfig, !isWeb, userConfig.remoteIpStrategy || 'ipv4', enableSSR);
266
+ patchBundlerConfig({
267
+ chain,
268
+ isServer: !isWeb,
269
+ modernjsConfig,
270
+ mfConfig,
271
+ enableSSR
272
+ });
273
+ if (isWeb) userConfig.distOutputDir = chain.output.get('path') || external_path_default().resolve(process.cwd(), 'dist');
274
+ else if (enableSSR) {
275
+ var _userConfig, _userConfig_userConfig;
276
+ (_userConfig = userConfig).userConfig || (_userConfig.userConfig = {});
277
+ (_userConfig_userConfig = userConfig.userConfig).ssr || (_userConfig_userConfig.ssr = {});
278
+ if (true === userConfig.userConfig.ssr) userConfig.userConfig.ssr = {};
279
+ userConfig.userConfig.ssr.distOutputDir = chain.output.get('path') || external_path_default().resolve(process.cwd(), 'dist/bundles');
280
+ }
253
281
  });
254
- userConfig.distOutputDir = chain.output.get('path') || external_path_default().resolve(process.cwd(), 'dist');
255
- });
256
- api.config(()=>{
257
- var _modernjsConfig_tools, _userConfig_csrConfig, _modernjsConfig_source, _modernjsConfig_source1, _modernjsConfig_dev;
258
- const bundlerType = 'rspack' === api.getAppContext().bundlerType ? 'rspack' : 'webpack';
259
- const ipv4 = (0, external_utils_js_namespaceObject.getIPV4)();
260
- if (void 0 === userConfig.remoteIpStrategy) if (enableSSR) userConfig.remoteIpStrategy = 'ipv4';
261
- else userConfig.remoteIpStrategy = 'inherit';
262
- const devServerConfig = null == (_modernjsConfig_tools = modernjsConfig.tools) ? void 0 : _modernjsConfig_tools.devServer;
263
- const corsWarnMsgs = [
264
- 'View https://module-federation.io/guide/troubleshooting/other.html#cors-warn for more details.'
265
- ];
266
- if ('object' != typeof devServerConfig || !('headers' in devServerConfig)) corsWarnMsgs.unshift('Detect devServer.headers is empty, mf modern plugin will add default cors header: devServer.headers["Access-Control-Allow-Headers"] = "*". It is recommended to specify an allowlist of trusted origins instead.');
267
- const exposes = null == (_userConfig_csrConfig = userConfig.csrConfig) ? void 0 : _userConfig_csrConfig.exposes;
268
- const hasExposes = exposes && Array.isArray(exposes) ? exposes.length : Object.keys(null != exposes ? exposes : {}).length;
269
- if (corsWarnMsgs.length > 1 && hasExposes) external_logger_js_default().warn(corsWarnMsgs.join('\n'));
270
- const corsHeaders = hasExposes ? {
271
- 'Access-Control-Allow-Origin': '*',
272
- 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, PATCH, OPTIONS',
273
- 'Access-Control-Allow-Headers': '*'
274
- } : void 0;
275
- const defineConfig = {
276
- REMOTE_IP_STRATEGY: JSON.stringify(userConfig.remoteIpStrategy)
277
- };
278
- if (enableSSR && (0, external_utils_js_namespaceObject.isDev)()) defineConfig['FEDERATION_IPV4'] = JSON.stringify(ipv4);
279
- var _modernjsConfig_source_enableAsyncEntry;
280
- return {
281
- tools: {
282
- devServer: {
283
- headers: corsHeaders
282
+ api.config(()=>{
283
+ var _modernjsConfig_tools, _userConfig_csrConfig, _modernjsConfig_source, _modernjsConfig_source1, _modernjsConfig_dev;
284
+ const bundlerType = 'rspack' === api.getAppContext().bundlerType ? 'rspack' : 'webpack';
285
+ const ipv4 = (0, external_utils_js_namespaceObject.getIPV4)();
286
+ if (void 0 === userConfig.remoteIpStrategy) if (enableSSR) userConfig.remoteIpStrategy = 'ipv4';
287
+ else userConfig.remoteIpStrategy = 'inherit';
288
+ const devServerConfig = null == (_modernjsConfig_tools = modernjsConfig.tools) ? void 0 : _modernjsConfig_tools.devServer;
289
+ const corsWarnMsgs = [
290
+ 'View https://module-federation.io/guide/troubleshooting/other.html#cors-warn for more details.'
291
+ ];
292
+ if ('object' != typeof devServerConfig || !('headers' in devServerConfig)) corsWarnMsgs.unshift('Detect devServer.headers is empty, mf modern plugin will add default cors header: devServer.headers["Access-Control-Allow-Headers"] = "*". It is recommended to specify an allowlist of trusted origins instead.');
293
+ const exposes = null == (_userConfig_csrConfig = userConfig.csrConfig) ? void 0 : _userConfig_csrConfig.exposes;
294
+ const hasExposes = exposes && Array.isArray(exposes) ? exposes.length : Object.keys(null != exposes ? exposes : {}).length;
295
+ if (corsWarnMsgs.length > 1 && hasExposes) external_logger_js_default().warn(corsWarnMsgs.join('\n'));
296
+ const corsHeaders = hasExposes ? {
297
+ 'Access-Control-Allow-Origin': '*',
298
+ 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, PATCH, OPTIONS',
299
+ 'Access-Control-Allow-Headers': '*'
300
+ } : void 0;
301
+ const defineConfig = {
302
+ REMOTE_IP_STRATEGY: JSON.stringify(userConfig.remoteIpStrategy)
303
+ };
304
+ if (enableSSR && (0, external_utils_js_namespaceObject.isDev)()) defineConfig['FEDERATION_IPV4'] = JSON.stringify(ipv4);
305
+ var _ref;
306
+ return {
307
+ tools: {
308
+ devServer: {
309
+ headers: corsHeaders
310
+ }
311
+ },
312
+ resolve: {
313
+ alias: {
314
+ '@modern-js/runtime/mf': require.resolve('@module-federation/modern-js/runtime')
315
+ }
316
+ },
317
+ source: {
318
+ define: defineConfig,
319
+ enableAsyncEntry: 'rspack' === bundlerType ? null != (_ref = null == (_modernjsConfig_source = modernjsConfig.source) ? void 0 : _modernjsConfig_source.enableAsyncEntry) ? _ref : true : null == (_modernjsConfig_source1 = modernjsConfig.source) ? void 0 : _modernjsConfig_source1.enableAsyncEntry
320
+ },
321
+ dev: {
322
+ assetPrefix: (null == modernjsConfig ? void 0 : null == (_modernjsConfig_dev = modernjsConfig.dev) ? void 0 : _modernjsConfig_dev.assetPrefix) ? modernjsConfig.dev.assetPrefix : true
284
323
  }
285
- },
286
- resolve: {
287
- alias: {
288
- '@modern-js/runtime/mf': require.resolve('@module-federation/modern-js/runtime')
289
- }
290
- },
291
- source: {
292
- define: defineConfig,
293
- enableAsyncEntry: 'rspack' === bundlerType ? null != (_modernjsConfig_source_enableAsyncEntry = null == (_modernjsConfig_source = modernjsConfig.source) ? void 0 : _modernjsConfig_source.enableAsyncEntry) ? _modernjsConfig_source_enableAsyncEntry : true : null == (_modernjsConfig_source1 = modernjsConfig.source) ? void 0 : _modernjsConfig_source1.enableAsyncEntry
294
- },
295
- dev: {
296
- assetPrefix: (null == modernjsConfig ? void 0 : null == (_modernjsConfig_dev = modernjsConfig.dev) ? void 0 : _modernjsConfig_dev.assetPrefix) ? modernjsConfig.dev.assetPrefix : true
297
- }
298
- };
299
- });
300
- }
301
- });
302
- const configPlugin = moduleFederationConfigPlugin;
324
+ };
325
+ });
326
+ }
327
+ });
328
+ const configPlugin = moduleFederationConfigPlugin;
329
+ })();
303
330
  exports.addMyTypes2Ignored = __webpack_exports__.addMyTypes2Ignored;
304
331
  exports["default"] = __webpack_exports__["default"];
305
332
  exports.getMFConfig = __webpack_exports__.getMFConfig;
@@ -309,7 +336,7 @@ exports.patchBundlerConfig = __webpack_exports__.patchBundlerConfig;
309
336
  exports.patchMFConfig = __webpack_exports__.patchMFConfig;
310
337
  exports.setEnv = __webpack_exports__.setEnv;
311
338
  exports.skipByTarget = __webpack_exports__.skipByTarget;
312
- for(var __webpack_i__ in __webpack_exports__)if (-1 === [
339
+ for(var __rspack_i in __webpack_exports__)if (-1 === [
313
340
  "addMyTypes2Ignored",
314
341
  "default",
315
342
  "getMFConfig",
@@ -319,7 +346,7 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
319
346
  "patchMFConfig",
320
347
  "setEnv",
321
348
  "skipByTarget"
322
- ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
349
+ ].indexOf(__rspack_i)) exports[__rspack_i] = __webpack_exports__[__rspack_i];
323
350
  Object.defineProperty(exports, '__esModule', {
324
351
  value: true
325
352
  });