@module-federation/rspack 0.0.0-next-20250924123930 → 0.0.0-perf-devtools-20260106124142
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/RemoteEntryPlugin.cjs.js +70 -0
- package/dist/RemoteEntryPlugin.cjs.js.map +1 -0
- package/dist/RemoteEntryPlugin.esm.mjs +67 -0
- package/dist/RemoteEntryPlugin.esm.mjs.map +1 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.mjs +2 -2
- package/dist/index.esm.mjs.map +1 -1
- package/dist/plugin.cjs.js +236 -266
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.esm.mjs +237 -267
- package/dist/plugin.esm.mjs.map +1 -1
- package/dist/remote-entry-plugin.cjs.js +4 -91
- package/dist/remote-entry-plugin.cjs.js.map +1 -1
- package/dist/remote-entry-plugin.esm.mjs +3 -94
- package/dist/remote-entry-plugin.esm.mjs.map +1 -1
- package/dist/src/ModuleFederationPlugin.d.ts +0 -1
- package/dist/src/logger.d.ts +2 -1
- package/package.json +8 -8
package/dist/plugin.cjs.js
CHANGED
|
@@ -7,293 +7,263 @@ var dtsPlugin = require('@module-federation/dts-plugin');
|
|
|
7
7
|
var ReactBridgePlugin = require('@module-federation/bridge-react-webpack-plugin');
|
|
8
8
|
var path = require('node:path');
|
|
9
9
|
var fs = require('node:fs');
|
|
10
|
-
var remoteEntryPlugin = require('./
|
|
10
|
+
var remoteEntryPlugin = require('./RemoteEntryPlugin.cjs.js');
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
const RuntimeToolsPath = require.resolve('@module-federation/runtime-tools');
|
|
13
|
+
const PLUGIN_NAME = 'RspackModuleFederationPlugin';
|
|
14
|
+
class ModuleFederationPlugin {
|
|
15
|
+
constructor(options) {
|
|
16
|
+
this.name = PLUGIN_NAME;
|
|
17
|
+
this._options = options;
|
|
15
18
|
}
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
_patchBundlerConfig(compiler) {
|
|
20
|
+
const { name, experiments } = this._options;
|
|
21
|
+
const definePluginOptions = {};
|
|
22
|
+
if (name) {
|
|
23
|
+
definePluginOptions['FEDERATION_BUILD_IDENTIFIER'] = JSON.stringify(sdk.composeKeyWithSeparator(name, managers.utils.getBuildVersion()));
|
|
24
|
+
}
|
|
25
|
+
// Add FEDERATION_OPTIMIZE_NO_SNAPSHOT_PLUGIN
|
|
26
|
+
const disableSnapshot = experiments?.optimization?.disableSnapshot ?? false;
|
|
27
|
+
definePluginOptions['FEDERATION_OPTIMIZE_NO_SNAPSHOT_PLUGIN'] =
|
|
28
|
+
disableSnapshot;
|
|
29
|
+
// Determine ENV_TARGET: only if manually specified in experiments.optimization.target
|
|
30
|
+
if (experiments?.optimization &&
|
|
31
|
+
typeof experiments.optimization === 'object' &&
|
|
32
|
+
experiments.optimization !== null &&
|
|
33
|
+
'target' in experiments.optimization) {
|
|
34
|
+
const manualTarget = experiments.optimization.target;
|
|
35
|
+
// Ensure the target is one of the expected values before setting
|
|
36
|
+
if (manualTarget === 'web' || manualTarget === 'node') {
|
|
37
|
+
definePluginOptions['ENV_TARGET'] = JSON.stringify(manualTarget);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
// No inference for ENV_TARGET. If not manually set and valid, it's not defined.
|
|
41
|
+
new compiler.webpack.DefinePlugin(definePluginOptions).apply(compiler);
|
|
24
42
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
43
|
+
_checkSingleton(compiler) {
|
|
44
|
+
let count = 0;
|
|
45
|
+
compiler.options.plugins.forEach((p) => {
|
|
46
|
+
if (typeof p !== 'object' || !p) {
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
if (p['name'] === this.name) {
|
|
50
|
+
count++;
|
|
51
|
+
if (count > 1) {
|
|
52
|
+
throw new Error(`Detect duplicate register ${this.name},please ensure ${this.name} is singleton!`);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
37
55
|
});
|
|
38
|
-
} else {
|
|
39
|
-
obj[key] = value;
|
|
40
|
-
}
|
|
41
|
-
return obj;
|
|
42
|
-
}
|
|
43
|
-
function _instanceof(left, right) {
|
|
44
|
-
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
45
|
-
return !!right[Symbol.hasInstance](left);
|
|
46
|
-
} else {
|
|
47
|
-
return left instanceof right;
|
|
48
56
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
55
|
-
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
56
|
-
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
57
|
-
}));
|
|
57
|
+
apply(compiler) {
|
|
58
|
+
sdk.bindLoggerToCompiler(remoteEntryPlugin.logger, compiler, PLUGIN_NAME);
|
|
59
|
+
const { _options: options } = this;
|
|
60
|
+
if (!options.name) {
|
|
61
|
+
throw new Error('[ ModuleFederationPlugin ]: name is required');
|
|
58
62
|
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
63
|
+
this._checkSingleton(compiler);
|
|
64
|
+
this._patchBundlerConfig(compiler);
|
|
65
|
+
const containerManager = new managers.ContainerManager();
|
|
66
|
+
containerManager.init(options);
|
|
67
|
+
if (containerManager.enable) {
|
|
68
|
+
this._patchChunkSplit(compiler, options.name);
|
|
69
|
+
}
|
|
70
|
+
// must before ModuleFederationPlugin
|
|
71
|
+
new remoteEntryPlugin.RemoteEntryPlugin(options).apply(compiler);
|
|
72
|
+
if (options.experiments?.provideExternalRuntime) {
|
|
73
|
+
if (options.exposes) {
|
|
74
|
+
throw new Error('You can only set provideExternalRuntime: true in pure consumer which not expose modules.');
|
|
75
|
+
}
|
|
76
|
+
const runtimePlugins = options.runtimePlugins || [];
|
|
77
|
+
options.runtimePlugins = runtimePlugins.concat(require.resolve('@module-federation/inject-external-runtime-core-plugin'));
|
|
78
|
+
}
|
|
79
|
+
if (options.experiments?.externalRuntime === true) {
|
|
80
|
+
const Externals = compiler.webpack.ExternalsPlugin;
|
|
81
|
+
new Externals(compiler.options.externalsType || 'global', {
|
|
82
|
+
'@module-federation/runtime-core': '_FEDERATION_RUNTIME_CORE',
|
|
83
|
+
}).apply(compiler);
|
|
84
|
+
}
|
|
85
|
+
options.implementation = options.implementation || RuntimeToolsPath;
|
|
86
|
+
let disableManifest = options.manifest === false;
|
|
87
|
+
let disableDts = options.dts === false;
|
|
88
|
+
if (!disableDts) {
|
|
89
|
+
const dtsPlugin$1 = new dtsPlugin.DtsPlugin(options);
|
|
90
|
+
// @ts-ignore
|
|
91
|
+
dtsPlugin$1.apply(compiler);
|
|
92
|
+
dtsPlugin$1.addRuntimePlugins();
|
|
93
|
+
}
|
|
94
|
+
if (!disableManifest && options.exposes) {
|
|
95
|
+
try {
|
|
96
|
+
options.exposes = containerManager.containerPluginExposesOptions;
|
|
97
|
+
}
|
|
98
|
+
catch (err) {
|
|
99
|
+
if (err instanceof Error) {
|
|
100
|
+
err.message = `[ ModuleFederationPlugin ]: Manifest will not generate, because: ${err.message}`;
|
|
101
|
+
}
|
|
102
|
+
remoteEntryPlugin.logger.warn(err);
|
|
103
|
+
disableManifest = true;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
new compiler.webpack.container.ModuleFederationPlugin(options).apply(compiler);
|
|
107
|
+
const runtimeESMPath = require.resolve('@module-federation/runtime/dist/index.esm.js', { paths: [options.implementation] });
|
|
108
|
+
compiler.hooks.afterPlugins.tap('PatchAliasWebpackPlugin', () => {
|
|
109
|
+
compiler.options.resolve.alias = {
|
|
110
|
+
...compiler.options.resolve.alias,
|
|
111
|
+
'@module-federation/runtime$': runtimeESMPath,
|
|
112
|
+
};
|
|
80
113
|
});
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
value: function _patchBundlerConfig(compiler) {
|
|
100
|
-
var _experiments_optimization;
|
|
101
|
-
var _this__options = this._options, name = _this__options.name, experiments = _this__options.experiments;
|
|
102
|
-
var definePluginOptions = {};
|
|
103
|
-
if (name) {
|
|
104
|
-
definePluginOptions['FEDERATION_BUILD_IDENTIFIER'] = JSON.stringify(sdk.composeKeyWithSeparator(name, managers.utils.getBuildVersion()));
|
|
114
|
+
if (!disableManifest) {
|
|
115
|
+
this._statsPlugin = new manifest.StatsPlugin(options, {
|
|
116
|
+
pluginVersion: "0.0.0-perf-devtools-20260106124142",
|
|
117
|
+
bundler: 'rspack',
|
|
118
|
+
});
|
|
119
|
+
// @ts-ignore
|
|
120
|
+
this._statsPlugin.apply(compiler);
|
|
121
|
+
}
|
|
122
|
+
const checkBridgeReactInstalled = () => {
|
|
123
|
+
try {
|
|
124
|
+
const userPackageJsonPath = path.resolve(compiler.context, 'package.json');
|
|
125
|
+
if (fs.existsSync(userPackageJsonPath)) {
|
|
126
|
+
const userPackageJson = JSON.parse(fs.readFileSync(userPackageJsonPath, 'utf-8'));
|
|
127
|
+
const userDependencies = {
|
|
128
|
+
...userPackageJson.dependencies,
|
|
129
|
+
...userPackageJson.devDependencies,
|
|
130
|
+
};
|
|
131
|
+
return !!userDependencies['@module-federation/bridge-react'];
|
|
105
132
|
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
133
|
+
return false;
|
|
134
|
+
}
|
|
135
|
+
catch (error) {
|
|
136
|
+
return false;
|
|
137
|
+
}
|
|
138
|
+
};
|
|
139
|
+
const hasBridgeReact = checkBridgeReactInstalled();
|
|
140
|
+
// react bridge plugin
|
|
141
|
+
const shouldEnableBridgePlugin = () => {
|
|
142
|
+
// Priority 1: Explicit enableBridgeRouter configuration
|
|
143
|
+
if (options?.bridge?.enableBridgeRouter === true) {
|
|
144
|
+
return true;
|
|
145
|
+
}
|
|
146
|
+
// Priority 2: Explicit disable via enableBridgeRouter:false or disableAlias:true
|
|
147
|
+
if (options?.bridge?.enableBridgeRouter === false ||
|
|
148
|
+
options?.bridge?.disableAlias === true) {
|
|
149
|
+
if (options?.bridge?.disableAlias === true) {
|
|
150
|
+
remoteEntryPlugin.logger.warn('⚠️ [ModuleFederationPlugin] The `disableAlias` option is deprecated and will be removed in a future version.\n' +
|
|
151
|
+
' Please use `enableBridgeRouter: false` instead:\n' +
|
|
152
|
+
' {\n' +
|
|
153
|
+
' bridge: {\n' +
|
|
154
|
+
' enableBridgeRouter: false // Use this instead of disableAlias: true\n' +
|
|
155
|
+
' }\n' +
|
|
156
|
+
' }');
|
|
117
157
|
}
|
|
118
|
-
|
|
119
|
-
new compiler.webpack.DefinePlugin(definePluginOptions).apply(compiler);
|
|
158
|
+
return false;
|
|
120
159
|
}
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
160
|
+
// Priority 3: Automatic detection based on bridge-react installation
|
|
161
|
+
if (hasBridgeReact) {
|
|
162
|
+
remoteEntryPlugin.logger.info('💡 [ModuleFederationPlugin] Detected @module-federation/bridge-react in your dependencies.\n' +
|
|
163
|
+
' For better control and to avoid future breaking changes, please explicitly set:\n' +
|
|
164
|
+
' {\n' +
|
|
165
|
+
' bridge: {\n' +
|
|
166
|
+
' enableBridgeRouter: true // Explicitly enable bridge router\n' +
|
|
167
|
+
' }\n' +
|
|
168
|
+
' }');
|
|
169
|
+
return true;
|
|
170
|
+
}
|
|
171
|
+
return false;
|
|
172
|
+
};
|
|
173
|
+
const enableBridgePlugin = shouldEnableBridgePlugin();
|
|
174
|
+
// When bridge plugin is disabled (router disabled), alias to /base entry
|
|
175
|
+
if (!enableBridgePlugin && hasBridgeReact) {
|
|
176
|
+
compiler.hooks.afterPlugins.tap('BridgeReactBaseAliasPlugin', () => {
|
|
177
|
+
try {
|
|
178
|
+
const bridgeReactBasePath = path.resolve(compiler.context, 'node_modules/@module-federation/bridge-react/dist/base.es.js');
|
|
179
|
+
if (!fs.existsSync(bridgeReactBasePath)) {
|
|
180
|
+
remoteEntryPlugin.logger.warn('⚠️ [ModuleFederationPlugin] bridge-react /base entry not found, falling back to default entry');
|
|
129
181
|
return;
|
|
130
182
|
}
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
}
|
|
137
|
-
});
|
|
138
|
-
}
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
key: "apply",
|
|
142
|
-
value: function apply(compiler) {
|
|
143
|
-
var _options_experiments, _options_experiments1;
|
|
144
|
-
var _this = this, options = _this._options;
|
|
145
|
-
if (!options.name) {
|
|
146
|
-
throw new Error('[ ModuleFederationPlugin ]: name is required');
|
|
183
|
+
compiler.options.resolve.alias = {
|
|
184
|
+
...compiler.options.resolve.alias,
|
|
185
|
+
'@module-federation/bridge-react$': bridgeReactBasePath,
|
|
186
|
+
};
|
|
187
|
+
remoteEntryPlugin.logger.info('✅ [ModuleFederationPlugin] Router disabled - using /base entry (no react-router-dom)');
|
|
147
188
|
}
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
var containerManager = new managers.ContainerManager();
|
|
151
|
-
containerManager.init(options);
|
|
152
|
-
if (containerManager.enable) {
|
|
153
|
-
this._patchChunkSplit(compiler, options.name);
|
|
189
|
+
catch (error) {
|
|
190
|
+
remoteEntryPlugin.logger.warn('⚠️ [ModuleFederationPlugin] Failed to set /base alias, using default entry');
|
|
154
191
|
}
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
192
|
+
});
|
|
193
|
+
}
|
|
194
|
+
if (enableBridgePlugin) {
|
|
195
|
+
new ReactBridgePlugin({
|
|
196
|
+
moduleFederationOptions: this._options,
|
|
197
|
+
}).apply(compiler);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
_patchChunkSplit(compiler, name) {
|
|
201
|
+
const { splitChunks } = compiler.options.optimization;
|
|
202
|
+
const patchChunkSplit = (cacheGroup) => {
|
|
203
|
+
switch (typeof cacheGroup) {
|
|
204
|
+
case 'boolean':
|
|
205
|
+
case 'string':
|
|
206
|
+
case 'function':
|
|
207
|
+
break;
|
|
208
|
+
// cacheGroup.chunks will inherit splitChunks.chunks, so you only need to modify the chunks that are set separately
|
|
209
|
+
case 'object': {
|
|
210
|
+
if (cacheGroup instanceof RegExp) {
|
|
211
|
+
break;
|
|
160
212
|
}
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
}
|
|
164
|
-
if (((_options_experiments1 = options.experiments) === null || _options_experiments1 === void 0 ? void 0 : _options_experiments1.externalRuntime) === true) {
|
|
165
|
-
var Externals = compiler.webpack.ExternalsPlugin;
|
|
166
|
-
new Externals(compiler.options.externalsType || 'global', {
|
|
167
|
-
'@module-federation/runtime-core': '_FEDERATION_RUNTIME_CORE'
|
|
168
|
-
}).apply(compiler);
|
|
169
|
-
}
|
|
170
|
-
options.implementation = options.implementation || RuntimeToolsPath;
|
|
171
|
-
var disableManifest = options.manifest === false;
|
|
172
|
-
var disableDts = options.dts === false;
|
|
173
|
-
if (!disableDts) {
|
|
174
|
-
var dtsPlugin$1 = new dtsPlugin.DtsPlugin(options);
|
|
175
|
-
// @ts-ignore
|
|
176
|
-
dtsPlugin$1.apply(compiler);
|
|
177
|
-
dtsPlugin$1.addRuntimePlugins();
|
|
178
|
-
}
|
|
179
|
-
if (!disableManifest && options.exposes) {
|
|
180
|
-
try {
|
|
181
|
-
options.exposes = containerManager.containerPluginExposesOptions;
|
|
182
|
-
} catch (err) {
|
|
183
|
-
if (_instanceof(err, Error)) {
|
|
184
|
-
err.message = "[ ModuleFederationPlugin ]: Manifest will not generate, because: ".concat(err.message);
|
|
185
|
-
}
|
|
186
|
-
console.warn(err);
|
|
187
|
-
disableManifest = true;
|
|
213
|
+
if (!cacheGroup.chunks) {
|
|
214
|
+
break;
|
|
188
215
|
}
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
});
|
|
196
|
-
compiler.hooks.afterPlugins.tap('PatchAliasWebpackPlugin', function() {
|
|
197
|
-
compiler.options.resolve.alias = _object_spread_props(_object_spread({}, compiler.options.resolve.alias), {
|
|
198
|
-
'@module-federation/runtime$': runtimeESMPath
|
|
199
|
-
});
|
|
200
|
-
});
|
|
201
|
-
if (!disableManifest) {
|
|
202
|
-
this._statsPlugin = new manifest.StatsPlugin(options, {
|
|
203
|
-
pluginVersion: "0.0.0-next-20250924123930",
|
|
204
|
-
bundler: 'rspack'
|
|
205
|
-
});
|
|
206
|
-
// @ts-ignore
|
|
207
|
-
this._statsPlugin.apply(compiler);
|
|
208
|
-
}
|
|
209
|
-
// react bridge plugin
|
|
210
|
-
var nodeModulesPath = path.resolve(compiler.context, 'node_modules');
|
|
211
|
-
var reactPath = path.join(nodeModulesPath, '@module-federation/bridge-react');
|
|
212
|
-
// Check whether react exists
|
|
213
|
-
if (fs.existsSync(reactPath) && (!(options === null || options === void 0 ? void 0 : options.bridge) || !options.bridge.disableAlias)) {
|
|
214
|
-
new ReactBridgePlugin({
|
|
215
|
-
moduleFederationOptions: this._options
|
|
216
|
-
}).apply(compiler);
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
key: "_patchChunkSplit",
|
|
222
|
-
value: function _patchChunkSplit(compiler, name) {
|
|
223
|
-
var splitChunks = compiler.options.optimization.splitChunks;
|
|
224
|
-
var patchChunkSplit = function(cacheGroup) {
|
|
225
|
-
switch(typeof cacheGroup === "undefined" ? "undefined" : _type_of(cacheGroup)){
|
|
226
|
-
case 'boolean':
|
|
227
|
-
case 'string':
|
|
228
|
-
case 'function':
|
|
229
|
-
break;
|
|
230
|
-
// cacheGroup.chunks will inherit splitChunks.chunks, so you only need to modify the chunks that are set separately
|
|
231
|
-
case 'object':
|
|
232
|
-
{
|
|
233
|
-
if (_instanceof(cacheGroup, RegExp)) {
|
|
234
|
-
break;
|
|
235
|
-
}
|
|
236
|
-
if (!cacheGroup.chunks) {
|
|
237
|
-
break;
|
|
238
|
-
}
|
|
239
|
-
if (typeof cacheGroup.chunks === 'function') {
|
|
240
|
-
var prevChunks = cacheGroup.chunks;
|
|
241
|
-
cacheGroup.chunks = function(chunk) {
|
|
242
|
-
if (chunk.name && (chunk.name === name || chunk.name === name + '_partial')) {
|
|
243
|
-
return false;
|
|
244
|
-
}
|
|
245
|
-
return prevChunks(chunk);
|
|
246
|
-
};
|
|
247
|
-
break;
|
|
248
|
-
}
|
|
249
|
-
if (cacheGroup.chunks === 'all') {
|
|
250
|
-
cacheGroup.chunks = function(chunk) {
|
|
251
|
-
if (chunk.name && (chunk.name === name || chunk.name === name + '_partial')) {
|
|
252
|
-
return false;
|
|
253
|
-
}
|
|
254
|
-
return true;
|
|
255
|
-
};
|
|
256
|
-
break;
|
|
257
|
-
}
|
|
258
|
-
if (cacheGroup.chunks === 'initial') {
|
|
259
|
-
cacheGroup.chunks = function(chunk) {
|
|
260
|
-
if (chunk.name && (chunk.name === name || chunk.name === name + '_partial')) {
|
|
261
|
-
return false;
|
|
262
|
-
}
|
|
263
|
-
return chunk.isOnlyInitial();
|
|
264
|
-
};
|
|
265
|
-
break;
|
|
266
|
-
}
|
|
267
|
-
break;
|
|
216
|
+
if (typeof cacheGroup.chunks === 'function') {
|
|
217
|
+
const prevChunks = cacheGroup.chunks;
|
|
218
|
+
cacheGroup.chunks = (chunk) => {
|
|
219
|
+
if (chunk.name &&
|
|
220
|
+
(chunk.name === name || chunk.name === name + '_partial')) {
|
|
221
|
+
return false;
|
|
268
222
|
}
|
|
223
|
+
return prevChunks(chunk);
|
|
224
|
+
};
|
|
225
|
+
break;
|
|
269
226
|
}
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
227
|
+
if (cacheGroup.chunks === 'all') {
|
|
228
|
+
cacheGroup.chunks = (chunk) => {
|
|
229
|
+
if (chunk.name &&
|
|
230
|
+
(chunk.name === name || chunk.name === name + '_partial')) {
|
|
231
|
+
return false;
|
|
232
|
+
}
|
|
233
|
+
return true;
|
|
234
|
+
};
|
|
235
|
+
break;
|
|
236
|
+
}
|
|
237
|
+
if (cacheGroup.chunks === 'initial') {
|
|
238
|
+
cacheGroup.chunks = (chunk) => {
|
|
239
|
+
if (chunk.name &&
|
|
240
|
+
(chunk.name === name || chunk.name === name + '_partial')) {
|
|
241
|
+
return false;
|
|
242
|
+
}
|
|
243
|
+
return chunk.isOnlyInitial();
|
|
244
|
+
};
|
|
245
|
+
break;
|
|
246
|
+
}
|
|
247
|
+
break;
|
|
279
248
|
}
|
|
280
|
-
// 修改 splitChunk.cacheGroups[key].chunks
|
|
281
|
-
Object.keys(cacheGroups).forEach(function(cacheGroupKey) {
|
|
282
|
-
patchChunkSplit(cacheGroups[cacheGroupKey]);
|
|
283
|
-
});
|
|
284
|
-
}
|
|
285
|
-
},
|
|
286
|
-
{
|
|
287
|
-
key: "statsResourceInfo",
|
|
288
|
-
get: function get() {
|
|
289
|
-
var _this__statsPlugin;
|
|
290
|
-
return (_this__statsPlugin = this._statsPlugin) === null || _this__statsPlugin === void 0 ? void 0 : _this__statsPlugin.resourceInfo;
|
|
291
249
|
}
|
|
250
|
+
};
|
|
251
|
+
if (!splitChunks) {
|
|
252
|
+
return;
|
|
253
|
+
}
|
|
254
|
+
// 修改 splitChunk.chunks
|
|
255
|
+
patchChunkSplit(splitChunks);
|
|
256
|
+
const { cacheGroups } = splitChunks;
|
|
257
|
+
if (!cacheGroups) {
|
|
258
|
+
return;
|
|
292
259
|
}
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
260
|
+
// 修改 splitChunk.cacheGroups[key].chunks
|
|
261
|
+
Object.keys(cacheGroups).forEach((cacheGroupKey) => {
|
|
262
|
+
patchChunkSplit(cacheGroups[cacheGroupKey]);
|
|
263
|
+
});
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
const GetPublicPathPlugin = remoteEntryPlugin.RemoteEntryPlugin;
|
|
297
267
|
|
|
298
268
|
exports.GetPublicPathPlugin = GetPublicPathPlugin;
|
|
299
269
|
exports.ModuleFederationPlugin = ModuleFederationPlugin;
|
package/dist/plugin.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugin.cjs.js","sources":["../../src/ModuleFederationPlugin.ts"],"sourcesContent":[null],"names":["composeKeyWithSeparator","utils","bindLoggerToCompiler","logger","ContainerManager","RemoteEntryPlugin","dtsPlugin","DtsPlugin","StatsPlugin"],"mappings":"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"}
|