@module-federation/vite 1.13.1 → 1.13.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 +429 -83
- package/lib/index.mjs +429 -83
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/vite",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.3",
|
|
4
4
|
"description": "Vite plugin for Module Federation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.cjs",
|
|
@@ -30,8 +30,9 @@
|
|
|
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",
|
|
33
|
-
"dev-nv": "pnpm clean && pnpm -filter 'examples-nuxt-vite-host' -filter 'examples-vite-vite-remote' run dev",
|
|
34
33
|
"preview-vv": "pnpm clean && pnpm -filter 'examples-vite-vite*' --parallel run preview",
|
|
34
|
+
"mixed-vv:1": "pnpm clean && pnpm -filter 'examples-vite-vite*' run mixed:1",
|
|
35
|
+
"mixed-vv:2": "pnpm clean && pnpm -filter 'examples-vite-vite*' run mixed:2",
|
|
35
36
|
"multi-example": "pnpm clean && pnpm --filter \"multi-example-*\" --parallel run start",
|
|
36
37
|
"test": "vitest run --dir src",
|
|
37
38
|
"test:integration": "vitest run integration",
|
|
@@ -66,11 +67,12 @@
|
|
|
66
67
|
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
67
68
|
},
|
|
68
69
|
"dependencies": {
|
|
69
|
-
"@module-federation/dts-plugin": "2.2.
|
|
70
|
-
"@module-federation/runtime": "2.2.
|
|
71
|
-
"@module-federation/sdk": "2.2.
|
|
70
|
+
"@module-federation/dts-plugin": "2.2.3",
|
|
71
|
+
"@module-federation/runtime": "2.2.3",
|
|
72
|
+
"@module-federation/sdk": "2.2.3",
|
|
72
73
|
"@rollup/pluginutils": "^5.3.0",
|
|
73
74
|
"defu": "^6.1.4",
|
|
75
|
+
"es-module-lexer": "^1.7.0",
|
|
74
76
|
"estree-walker": "^3.0.3",
|
|
75
77
|
"magic-string": "^0.30.21",
|
|
76
78
|
"pathe": "^2.0.3"
|