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