File tree 2 files changed +6
-10
lines changed
packages/enhanced/src/lib/container/runtime
2 files changed +6
-10
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @module-federation/enhanced ' : patch
3
+ ---
4
+
5
+ remove module resolve path replacements
Original file line number Diff line number Diff line change @@ -370,10 +370,6 @@ class FederationRuntimePlugin {
370
370
) ;
371
371
}
372
372
373
- if ( isHoisted ) {
374
- runtimePath = runtimePath . replace ( '.cjs.js' , '.esm.mjs' ) ;
375
- }
376
-
377
373
const alias : any = compiler . options . resolve . alias || { } ;
378
374
alias [ '@module-federation/runtime$' ] =
379
375
alias [ '@module-federation/runtime$' ] || runtimePath ;
@@ -437,11 +433,6 @@ class FederationRuntimePlugin {
437
433
}
438
434
439
435
if ( this . options ?. experiments ?. federationRuntime === 'hoisted' ) {
440
- this . bundlerRuntimePath = this . bundlerRuntimePath . replace (
441
- '.cjs.js' ,
442
- '.esm.mjs' ,
443
- ) ;
444
-
445
436
new EmbedFederationRuntimePlugin ( ) . apply ( compiler ) ;
446
437
447
438
new HoistContainerReferences ( ) . apply ( compiler ) ;
@@ -450,7 +441,7 @@ class FederationRuntimePlugin {
450
441
/ @ m o d u l e - f e d e r a t i o n \/ r u n t i m e / ,
451
442
( resolveData ) => {
452
443
if ( / w e b p a c k - b u n d l e r - r u n t i m e / . test ( resolveData . contextInfo . issuer ) ) {
453
- resolveData . request = RuntimePath . replace ( 'cjs.js' , 'esm.mjs' ) ;
444
+ resolveData . request = RuntimePath ;
454
445
455
446
if ( resolveData . createData ) {
456
447
resolveData . createData . request = resolveData . request ;
You can’t perform that action at this time.
0 commit comments