@module-federation/vite 1.15.1 → 1.15.3
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/lib/index.cjs +726 -358
- package/lib/index.d.cts +13 -1
- package/lib/index.d.mts +13 -1
- package/lib/index.mjs +730 -360
- package/package.json +7 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/vite",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.3",
|
|
4
4
|
"description": "Vite plugin for Module Federation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.cjs",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"fmt.check": "oxfmt --check src",
|
|
27
27
|
"dev": "tsdown --watch",
|
|
28
28
|
"build": "tsdown",
|
|
29
|
-
"clean": "pnpm -r exec rm -rf dist
|
|
29
|
+
"clean": "pnpm -r exec rm -rf dist node_modules/__mf__virtual .vite node_modules/.vite",
|
|
30
30
|
"dev-rv": "pnpm clean && pnpm -filter 'examples-rust-vite*' run dev",
|
|
31
31
|
"preview-rv": "pnpm clean && pnpm -filter 'examples-rust-vite*' run preview",
|
|
32
32
|
"dev-vv": "pnpm clean && pnpm -filter 'examples-vite-vite*' run dev",
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
52
52
|
"vite",
|
|
53
|
+
"vite-plugin",
|
|
53
54
|
"module federation",
|
|
54
55
|
"microfrontend"
|
|
55
56
|
],
|
|
@@ -68,14 +69,11 @@
|
|
|
68
69
|
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
69
70
|
},
|
|
70
71
|
"dependencies": {
|
|
71
|
-
"@module-federation/dts-plugin": "2.
|
|
72
|
-
"@module-federation/runtime": "2.
|
|
73
|
-
"@module-federation/sdk": "2.
|
|
74
|
-
"@rollup/pluginutils": "^5.3.0",
|
|
75
|
-
"defu": "^6.1.4",
|
|
72
|
+
"@module-federation/dts-plugin": "2.4.0",
|
|
73
|
+
"@module-federation/runtime": "2.4.0",
|
|
74
|
+
"@module-federation/sdk": "2.4.0",
|
|
76
75
|
"es-module-lexer": "^2.0.0",
|
|
77
76
|
"estree-walker": "^3.0.3",
|
|
78
|
-
"magic-string": "^0.30.21",
|
|
79
77
|
"pathe": "^2.0.3"
|
|
80
78
|
},
|
|
81
79
|
"devDependencies": {
|
|
@@ -86,6 +84,7 @@
|
|
|
86
84
|
"oxfmt": "^0.36.0",
|
|
87
85
|
"rollup": "^4.47.1",
|
|
88
86
|
"tsdown": "^0.21.0",
|
|
87
|
+
"typescript": "5.9.3",
|
|
89
88
|
"vite": "^8.0.10",
|
|
90
89
|
"vitest": "^4.0.18"
|
|
91
90
|
}
|