Skip to content

Commit 796ab39

Browse files
authored
fix: upgrade MF@0.21.3 to fix lazy compilation issue (#1327)
1 parent 6257169 commit 796ab39

File tree

8 files changed

+275
-36
lines changed

8 files changed

+275
-36
lines changed

examples/module-federation/mf-host/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"react-dom": "^19.2.0"
1414
},
1515
"devDependencies": {
16-
"@module-federation/rsbuild-plugin": "^0.21.2",
16+
"@module-federation/rsbuild-plugin": "^0.21.3",
1717
"@rsbuild/core": "~1.6.2",
1818
"@rsbuild/plugin-react": "^1.4.1",
1919
"@types/react": "^19.2.2",

examples/module-federation/mf-host/rsbuild.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ import { defineConfig } from '@rsbuild/core';
33
import { pluginReact } from '@rsbuild/plugin-react';
44

55
export default defineConfig({
6-
dev: {
7-
lazyCompilation: false,
8-
},
96
plugins: [
107
pluginReact(),
118
pluginModuleFederation(

examples/module-federation/mf-react-component/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"storybook": "storybook dev -p 6006"
2020
},
2121
"devDependencies": {
22-
"@module-federation/enhanced": "^0.21.2",
23-
"@module-federation/rsbuild-plugin": "^0.21.2",
22+
"@module-federation/enhanced": "^0.21.3",
23+
"@module-federation/rsbuild-plugin": "^0.21.3",
2424
"@module-federation/storybook-addon": "^4.0.34",
2525
"@rsbuild/plugin-react": "^1.4.1",
2626
"@rslib/core": "workspace:*",

examples/module-federation/mf-remote/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"react-dom": "^19.2.0"
1414
},
1515
"devDependencies": {
16-
"@module-federation/rsbuild-plugin": "^0.21.2",
16+
"@module-federation/rsbuild-plugin": "^0.21.3",
1717
"@rsbuild/core": "~1.6.2",
1818
"@rsbuild/plugin-react": "^1.4.1",
1919
"@types/react": "^19.2.2",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"rsbuild-plugin-dts": "workspace:*"
4848
},
4949
"devDependencies": {
50-
"@module-federation/rsbuild-plugin": "^0.21.2",
50+
"@module-federation/rsbuild-plugin": "^0.21.3",
5151
"@rslib/tsconfig": "workspace:*",
5252
"@types/fs-extra": "^11.0.4",
5353
"cac": "^6.7.14",

pnpm-lock.yaml

Lines changed: 268 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"devDependencies": {
1717
"@codspeed/vitest-plugin": "^4.0.1",
18-
"@module-federation/rsbuild-plugin": "^0.21.2",
18+
"@module-federation/rsbuild-plugin": "^0.21.3",
1919
"@playwright/test": "1.56.1",
2020
"@rsbuild/core": "~1.6.2",
2121
"@rsbuild/plugin-less": "^1.5.0",

website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "rspress preview"
1010
},
1111
"devDependencies": {
12-
"@module-federation/rsbuild-plugin": "^0.21.2",
12+
"@module-federation/rsbuild-plugin": "^0.21.3",
1313
"@rsbuild/core": "~1.6.2",
1414
"@rsbuild/plugin-react": "^1.4.1",
1515
"@rsbuild/plugin-sass": "^1.4.0",

0 commit comments

Comments
 (0)