File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
packages/repack/src/plugins Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @callstack/repack " : patch
3+ ---
4+
5+ fix: expose MF2 plugin configuration for external tooling
Original file line number Diff line number Diff line change @@ -83,8 +83,10 @@ export interface ModuleFederationPluginV2Config
8383export class ModuleFederationPluginV2 implements RspackPluginInstance {
8484 private config : MF . ModuleFederationPluginOptions ;
8585 private deepImports : boolean ;
86+ public _options ! : ModuleFederationPluginV2Config ;
8687
8788 constructor ( pluginConfig : ModuleFederationPluginV2Config ) {
89+ this . _options = pluginConfig ;
8890 const { reactNativeDeepImports, ...config } = pluginConfig ;
8991 this . config = config ;
9092 this . deepImports = reactNativeDeepImports ?? true ;
You can’t perform that action at this time.
0 commit comments