ms-vite-plugin 0.8.7 → 0.9.1
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/bin/mac/ms-bundle-enc +0 -0
- package/bin/win/ms-bundle-enc.exe +0 -0
- package/dist/cli.js +3 -1
- package/package.json +3 -3
package/bin/mac/ms-bundle-enc
CHANGED
|
Binary file
|
|
Binary file
|
package/dist/cli.js
CHANGED
|
@@ -78,7 +78,9 @@ async function buildCommand(options) {
|
|
|
78
78
|
console.log(`🚀 开始构建项目 (${isDev ? "开发模式" : "生产模式"})...`);
|
|
79
79
|
await (0, build_1.buildAll)(isDev, workspacePath);
|
|
80
80
|
console.log("✅ 构建完成!");
|
|
81
|
-
console.log(
|
|
81
|
+
// console.log(
|
|
82
|
+
// `📦 输出文件: ${path.join(workspacePath, "dist", "ms.msbundle")}`
|
|
83
|
+
// );
|
|
82
84
|
}
|
|
83
85
|
catch (error) {
|
|
84
86
|
console.error("❌ 构建失败:", error instanceof Error ? error.message : error);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ms-vite-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"commander": "^14.0.3",
|
|
23
|
-
"fs-extra": "^11.3.
|
|
23
|
+
"fs-extra": "^11.3.4",
|
|
24
24
|
"vite": "^7.3.1",
|
|
25
25
|
"vite-plugin-bundle-obfuscator": "^1.10.0",
|
|
26
26
|
"archiver": "^7.0.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/fs-extra": "^11.0.4",
|
|
30
|
-
"@types/node": "^25.
|
|
30
|
+
"@types/node": "^25.5.0",
|
|
31
31
|
"@types/archiver": "^7.0.0",
|
|
32
32
|
"typescript": "~5.9.3"
|
|
33
33
|
}
|