pake-cli 3.3.0 → 3.3.2
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/README.md +39 -50
- package/dist/cli.js +146 -90
- package/package.json +6 -6
- package/src-tauri/.pake/pake.json +1 -2
- package/src-tauri/.pake/tauri.conf.json +5 -5
- package/src-tauri/.pake/tauri.macos.conf.json +3 -3
- package/src-tauri/Cargo.lock +152 -97
- package/src-tauri/src/app/window.rs +14 -17
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pake-cli",
|
|
3
|
-
"version": "3.3.
|
|
4
|
-
"description": "🤱🏻 Turn any webpage into a desktop app with
|
|
3
|
+
"version": "3.3.2",
|
|
4
|
+
"description": "🤱🏻 Turn any webpage into a desktop app with one command. 🤱🏻 一键打包网页生成轻量桌面应用。",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.0.0"
|
|
7
7
|
},
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"license": "MIT",
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@tauri-apps/api": "^2.8.0",
|
|
54
|
-
"@tauri-apps/cli": "^2.8.
|
|
54
|
+
"@tauri-apps/cli": "^2.8.4",
|
|
55
55
|
"axios": "^1.11.0",
|
|
56
56
|
"chalk": "^5.6.0",
|
|
57
57
|
"commander": "^12.1.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"ora": "^8.2.0",
|
|
64
64
|
"prompts": "^2.4.2",
|
|
65
65
|
"psl": "^1.15.0",
|
|
66
|
-
"sharp": "^0.
|
|
66
|
+
"sharp": "^0.33.5",
|
|
67
67
|
"tmp-promise": "^3.0.3",
|
|
68
68
|
"update-notifier": "^7.3.1"
|
|
69
69
|
},
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"@rollup/plugin-replace": "^6.0.2",
|
|
75
75
|
"@rollup/plugin-terser": "^0.4.4",
|
|
76
76
|
"@types/fs-extra": "^11.0.4",
|
|
77
|
-
"@types/node": "^20.19.
|
|
77
|
+
"@types/node": "^20.19.13",
|
|
78
78
|
"@types/page-icon": "^0.3.6",
|
|
79
79
|
"@types/prompts": "^2.4.9",
|
|
80
80
|
"@types/tmp": "^0.2.6",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"app-root-path": "^3.1.0",
|
|
83
83
|
"cross-env": "^7.0.3",
|
|
84
84
|
"prettier": "^3.6.2",
|
|
85
|
-
"rollup": "^4.
|
|
85
|
+
"rollup": "^4.50.0",
|
|
86
86
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
87
87
|
"tslib": "^2.8.1",
|
|
88
88
|
"typescript": "^5.9.2"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"windows": [
|
|
3
3
|
{
|
|
4
|
-
"url": "https://
|
|
4
|
+
"url": "https://github.com",
|
|
5
5
|
"url_type": "web",
|
|
6
6
|
"hide_title_bar": false,
|
|
7
7
|
"fullscreen": false,
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
"incognito": false,
|
|
17
17
|
"enable_wasm": false,
|
|
18
18
|
"enable_drag_drop": false,
|
|
19
|
-
"enable_serial": true,
|
|
20
19
|
"title": null
|
|
21
20
|
}
|
|
22
21
|
],
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"productName": "
|
|
3
|
-
"identifier": "com.pake.
|
|
2
|
+
"productName": "GitHubAutoIconTest",
|
|
3
|
+
"identifier": "com.pake.3097fc",
|
|
4
4
|
"version": "1.0.0",
|
|
5
5
|
"app": {
|
|
6
6
|
"withGlobalTauri": true,
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
},
|
|
14
14
|
"bundle": {
|
|
15
15
|
"icon": [
|
|
16
|
-
"icons/
|
|
16
|
+
"icons/githubautoicontest.icns"
|
|
17
17
|
],
|
|
18
18
|
"active": true,
|
|
19
19
|
"targets": [
|
|
20
|
-
"
|
|
20
|
+
"app"
|
|
21
21
|
],
|
|
22
22
|
"resources": [
|
|
23
|
-
"icons/
|
|
23
|
+
"icons/githubautoicontest.icns"
|
|
24
24
|
]
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bundle": {
|
|
3
3
|
"icon": [
|
|
4
|
-
"icons/
|
|
4
|
+
"icons/githubautoicontest.icns"
|
|
5
5
|
],
|
|
6
6
|
"active": true,
|
|
7
7
|
"targets": [
|
|
8
|
-
"
|
|
8
|
+
"app"
|
|
9
9
|
],
|
|
10
10
|
"resources": [
|
|
11
|
-
"icons/
|
|
11
|
+
"icons/githubautoicontest.icns"
|
|
12
12
|
]
|
|
13
13
|
}
|
|
14
14
|
}
|