@lemon-fe/vite-plugin-micro-frontend 1.0.3 → 1.0.5
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/dist/index.d.ts +68 -64
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lemon-fe/vite-plugin-micro-frontend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Vite 微前端插件集合,包含路由自动生成、模块联邦、qiankun 集成等功能",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"node": ">=18.0.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"
|
|
50
|
-
"
|
|
49
|
+
"react": "^17.0.0",
|
|
50
|
+
"vite": "^4.0.0 || ^5.0.0"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@originjs/vite-plugin-federation": "^1.4.1",
|
|
@@ -56,11 +56,15 @@
|
|
|
56
56
|
"vite-plugin-qiankun": "^1.0.15"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
+
"@babel/parser": "^7.28.5",
|
|
60
|
+
"@babel/traverse": "^7.28.5",
|
|
61
|
+
"@babel/types": "^7.28.5",
|
|
59
62
|
"@rollup/plugin-commonjs": "^28.0.0",
|
|
60
63
|
"@rollup/plugin-json": "^6.1.0",
|
|
61
64
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
62
65
|
"@rollup/plugin-terser": "^0.4.4",
|
|
63
66
|
"@rollup/plugin-typescript": "^12.1.0",
|
|
67
|
+
"@types/babel__traverse": "^7.28.0",
|
|
64
68
|
"@types/node": "^22.0.0",
|
|
65
69
|
"@types/react": "^18.0.0",
|
|
66
70
|
"rollup": "^4.21.2",
|