@module-federation/bridge-react 2.3.0 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +14 -0
- package/package.json +7 -7
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @module-federation/bridge-react@2.3.
|
|
2
|
+
> @module-federation/bridge-react@2.3.2 build /home/runner/work/core/core/packages/bridge/bridge-react
|
|
3
3
|
> vite build
|
|
4
4
|
|
|
5
5
|
[33mThe CJS build of Vite's Node API is deprecated. See https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more details.[39m
|
|
@@ -60,7 +60,7 @@ Analysis will use the bundled TypeScript version 5.8.2
|
|
|
60
60
|
*** The target project appears to use TypeScript 5.9.3 which is newer than the bundled compiler engine; consider upgrading API Extractor.
|
|
61
61
|
Analysis will use the bundled TypeScript version 5.8.2
|
|
62
62
|
*** The target project appears to use TypeScript 5.9.3 which is newer than the bundled compiler engine; consider upgrading API Extractor.
|
|
63
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
63
|
+
[32m[36m[vite:dts][32m Declaration files built in 50255ms.
|
|
64
64
|
[39m
|
|
65
65
|
[2mdist/[22m[36mlazy-load-component-plugin.es.js [39m[1m[2m 0.17 kB[22m[1m[22m[2m │ gzip: 0.15 kB[22m
|
|
66
66
|
[2mdist/[22m[36mplugin.es.js [39m[1m[2m 0.29 kB[22m[1m[22m[2m │ gzip: 0.18 kB[22m
|
|
@@ -82,4 +82,4 @@ Analysis will use the bundled TypeScript version 5.8.2
|
|
|
82
82
|
[2mdist/[22m[36mlazy-load-component-plugin-CqxENGBE.mjs [39m[1m[2m17.79 kB[22m[1m[22m[2m │ gzip: 4.33 kB[22m
|
|
83
83
|
[2mdist/[22m[36mprefetch-CFKA0dZg.mjs [39m[1m[2m31.92 kB[22m[1m[22m[2m │ gzip: 7.90 kB[22m
|
|
84
84
|
[2mdist/[22m[36mutils-D4k5eixv.mjs [39m[1m[2m71.78 kB[22m[1m[22m[2m │ gzip: 15.18 kB[22m
|
|
85
|
-
[32m✓ built in 53.
|
|
85
|
+
[32m✓ built in 53.05s[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @module-federation/bridge-react
|
|
2
2
|
|
|
3
|
+
## 2.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1c02710: chore: lock deps
|
|
8
|
+
- @module-federation/sdk@2.3.2
|
|
9
|
+
|
|
10
|
+
## 2.3.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- @module-federation/sdk@2.3.1
|
|
15
|
+
- @module-federation/bridge-shared@2.3.1
|
|
16
|
+
|
|
3
17
|
## 2.3.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/bridge-react",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.2",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -127,10 +127,8 @@
|
|
|
127
127
|
}
|
|
128
128
|
},
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"@module-federation/sdk": "2.3.0",
|
|
133
|
-
"@module-federation/bridge-shared": "2.3.0"
|
|
130
|
+
"lru-cache": "10.4.3",
|
|
131
|
+
"@module-federation/sdk": "2.3.2"
|
|
134
132
|
},
|
|
135
133
|
"peerDependencies": {
|
|
136
134
|
"react": ">=16.9.0",
|
|
@@ -151,6 +149,7 @@
|
|
|
151
149
|
}
|
|
152
150
|
},
|
|
153
151
|
"devDependencies": {
|
|
152
|
+
"react-error-boundary": "^4.1.2",
|
|
154
153
|
"@testing-library/react": "15.0.7",
|
|
155
154
|
"@testing-library/jest-dom": "6.6.3",
|
|
156
155
|
"@types/react": "18.2.79",
|
|
@@ -167,8 +166,9 @@
|
|
|
167
166
|
"vite-plugin-dts": "^4.3.0",
|
|
168
167
|
"hono": "4.12.7",
|
|
169
168
|
"vitest": "1.6.0",
|
|
170
|
-
"@module-federation/runtime": "2.3.
|
|
171
|
-
"@module-federation/runtime-core": "2.3.
|
|
169
|
+
"@module-federation/runtime": "2.3.2",
|
|
170
|
+
"@module-federation/runtime-core": "2.3.2",
|
|
171
|
+
"@module-federation/bridge-shared": "2.3.2"
|
|
172
172
|
},
|
|
173
173
|
"scripts": {
|
|
174
174
|
"dev": "vite",
|