Skip to content

Commit 5613265

Browse files
authoredNov 17, 2024··
fix(enhanced): remove resolve replacements (#3236)
1 parent 4c9f725 commit 5613265

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed
 

‎.changeset/thick-baboons-hear.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@module-federation/enhanced': patch
3+
---
4+
5+
remove module resolve path replacements

‎packages/enhanced/src/lib/container/runtime/FederationRuntimePlugin.ts

+1-10
Original file line numberDiff line numberDiff line change
@@ -370,10 +370,6 @@ class FederationRuntimePlugin {
370370
);
371371
}
372372

373-
if (isHoisted) {
374-
runtimePath = runtimePath.replace('.cjs.js', '.esm.mjs');
375-
}
376-
377373
const alias: any = compiler.options.resolve.alias || {};
378374
alias['@module-federation/runtime$'] =
379375
alias['@module-federation/runtime$'] || runtimePath;
@@ -437,11 +433,6 @@ class FederationRuntimePlugin {
437433
}
438434

439435
if (this.options?.experiments?.federationRuntime === 'hoisted') {
440-
this.bundlerRuntimePath = this.bundlerRuntimePath.replace(
441-
'.cjs.js',
442-
'.esm.mjs',
443-
);
444-
445436
new EmbedFederationRuntimePlugin().apply(compiler);
446437

447438
new HoistContainerReferences().apply(compiler);
@@ -450,7 +441,7 @@ class FederationRuntimePlugin {
450441
/@module-federation\/runtime/,
451442
(resolveData) => {
452443
if (/webpack-bundler-runtime/.test(resolveData.contextInfo.issuer)) {
453-
resolveData.request = RuntimePath.replace('cjs.js', 'esm.mjs');
444+
resolveData.request = RuntimePath;
454445

455446
if (resolveData.createData) {
456447
resolveData.createData.request = resolveData.request;

0 commit comments

Comments
 (0)
Please sign in to comment.