@flun/desktop-builder 1.0.5 → 1.0.6
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/CHANGELOG.md +3 -3
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# 变更日志
|
|
2
|
-
## [1.0.
|
|
3
|
-
###
|
|
4
|
-
-
|
|
2
|
+
## [1.0.6] - 2026-07-06 19:56
|
|
3
|
+
### 优化
|
|
4
|
+
- 升级了一些依赖包;
|
|
5
5
|
## [1.0.4] - 2026-07-05 17:17
|
|
6
6
|
### 紧急修复
|
|
7
7
|
- **修复依赖安装失败问题**:因 `node` 包安装脚本报错(`Cannot find module 'node-win-x64/package.json'`)导致安装中断,现通过 `--ignore-scripts` 和 `npm_config_ignore_scripts=true` 强制跳过脚本执行,确保依赖安装顺利完成。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flun/desktop-builder",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "将任意 Node.js 网站一键打包为当前桌面应用('win', 'mac', 'linux')(基于 Electron),支持高度自定义配置;",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -53,7 +53,9 @@
|
|
|
53
53
|
"electron-builder": "^26.15.3",
|
|
54
54
|
"execa": "^9.6.1",
|
|
55
55
|
"fs-extra": "^11.3.6",
|
|
56
|
-
"chalk": "^5.6.2"
|
|
56
|
+
"chalk": "^5.6.2",
|
|
57
|
+
"glob": "13.0.6",
|
|
58
|
+
"rimraf": "6.1.3"
|
|
57
59
|
},
|
|
58
60
|
"engines": {
|
|
59
61
|
"node": ">=22.12.0",
|