@module-federation/bridge-react-webpack-plugin 2.1.0 → 2.2.0
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 +20 -0
- package/CHANGELOG.md +9 -1
- package/package.json +4 -3
- package/vitest.config.ts +2 -2
- package/project.json +0 -29
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
> @module-federation/bridge-react-webpack-plugin@2.2.0 build /home/runner/work/core/core/packages/bridge/bridge-react-webpack-plugin
|
|
3
|
+
> vite build
|
|
4
|
+
|
|
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
|
|
6
|
+
[36mvite v5.4.21 [32mbuilding for production...[36m[39m
|
|
7
|
+
transforming...
|
|
8
|
+
[32m✓[39m 92 modules transformed.
|
|
9
|
+
rendering chunks...
|
|
10
|
+
[32m
|
|
11
|
+
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
12
|
+
computing gzip size...
|
|
13
|
+
[2mdist/[22m[36mindex.cjs.js [39m[1m[2m56.02 kB[22m[1m[22m[2m │ gzip: 12.26 kB[22m
|
|
14
|
+
[32m[36m[vite:dts][32m Start rollup declaration files...[39m
|
|
15
|
+
Analysis will use the bundled TypeScript version 5.8.2
|
|
16
|
+
*** The target project appears to use TypeScript 5.9.3 which is newer than the bundled compiler engine; consider upgrading API Extractor.
|
|
17
|
+
[32m[36m[vite:dts][32m Declaration files built in 11775ms.
|
|
18
|
+
[39m
|
|
19
|
+
[2mdist/[22m[36mindex.es.js [39m[1m[2m56.00 kB[22m[1m[22m[2m │ gzip: 12.26 kB[22m
|
|
20
|
+
[32m✓ built in 13.72s[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @module-federation/bridge-react-webpack-plugin
|
|
2
2
|
|
|
3
|
+
## 2.2.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [c856ec1]
|
|
8
|
+
- Updated dependencies [12240bb]
|
|
9
|
+
- Updated dependencies [e5dd6ef]
|
|
10
|
+
- @module-federation/sdk@2.2.0
|
|
11
|
+
|
|
3
12
|
## 2.1.0
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -157,7 +166,6 @@
|
|
|
157
166
|
### Patch Changes
|
|
158
167
|
|
|
159
168
|
- a7cf276: chore: upgrade NX to 21.2.3, Storybook to 9.0.9, and TypeScript to 5.8.3
|
|
160
|
-
|
|
161
169
|
- Upgraded NX from 21.0.3 to 21.2.3 with workspace configuration updates
|
|
162
170
|
- Migrated Storybook from 8.3.5 to 9.0.9 with updated configurations and automigrations
|
|
163
171
|
- Upgraded TypeScript from 5.7.3 to 5.8.3 with compatibility fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/bridge-react-webpack-plugin",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"semver": "7.6.3",
|
|
27
27
|
"@types/semver": "7.5.8",
|
|
28
|
-
"@module-federation/sdk": "2.
|
|
28
|
+
"@module-federation/sdk": "2.2.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"typescript": "^5.2.2",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"scripts": {
|
|
36
36
|
"dev": "vite",
|
|
37
37
|
"build": "vite build",
|
|
38
|
-
"preview": "vite preview"
|
|
38
|
+
"preview": "vite preview",
|
|
39
|
+
"test": "vitest run -c vitest.config.ts"
|
|
39
40
|
}
|
|
40
41
|
}
|
package/vitest.config.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineConfig } from 'vitest/config';
|
|
2
|
-
import
|
|
2
|
+
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
3
3
|
import path from 'path';
|
|
4
4
|
export default defineConfig({
|
|
5
5
|
define: {
|
|
@@ -9,7 +9,7 @@ export default defineConfig({
|
|
|
9
9
|
__VERSION__: '"unknown"',
|
|
10
10
|
__APP_VERSION__: '"0.0.0"',
|
|
11
11
|
},
|
|
12
|
-
plugins: [
|
|
12
|
+
plugins: [tsconfigPaths()],
|
|
13
13
|
test: {
|
|
14
14
|
environment: 'jsdom',
|
|
15
15
|
include: [
|
package/project.json
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "bridge-react-webpack-plugin",
|
|
3
|
-
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
-
"sourceRoot": "packages/bridge/bridge-react-webpack-plugin/src",
|
|
5
|
-
"projectType": "library",
|
|
6
|
-
"tags": ["type:pkg"],
|
|
7
|
-
"targets": {
|
|
8
|
-
"build": {
|
|
9
|
-
"executor": "nx:run-commands",
|
|
10
|
-
"options": {
|
|
11
|
-
"commands": [
|
|
12
|
-
"npm run build --prefix packages/bridge/bridge-react-webpack-plugin"
|
|
13
|
-
]
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"test": {
|
|
17
|
-
"executor": "nx:run-commands",
|
|
18
|
-
"options": {
|
|
19
|
-
"parallel": false,
|
|
20
|
-
"commands": [
|
|
21
|
-
{
|
|
22
|
-
"command": "vitest run -c packages/bridge/bridge-react-webpack-plugin/vitest.config.ts",
|
|
23
|
-
"forwardAllArgs": false
|
|
24
|
-
}
|
|
25
|
-
]
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|