Skip to content

Commit 0ab76b6

Browse files
chore: biome
1 parent a29a143 commit 0ab76b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/bin/helpers/getOptionsFromWebpackConfig.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export function getOptionsFromWebpackConfig(webpackConfigPath: string) {
2424
}
2525

2626
function getModuleFederationPluginOptions(config: Compiler['options']) {
27-
const plugin = config.plugins.find(
28-
nextPlugin => /^_?ModuleFederationPlugin$/.test(nextPlugin!.constructor.name),
27+
const plugin = config.plugins.find(nextPlugin =>
28+
/^_?ModuleFederationPlugin$/.test(nextPlugin!.constructor.name),
2929
);
3030
return (plugin as Dict)?._options as Dict & { remotes?: Dict<string> };
3131
}

0 commit comments

Comments
 (0)