@ahqstore/cli 0.5.2 → 0.5.4
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/Cargo.toml +1 -1
- package/README.md +4 -0
- package/latest.md +1 -1
- package/package.json +10 -10
- package/src/app/build/mod.rs +2 -3
package/Cargo.toml
CHANGED
package/README.md
CHANGED
package/latest.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
Binaries for the release
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ahqstore/cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"readme": "./README.md",
|
|
5
5
|
"napi": {
|
|
6
6
|
"name": "cli",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"version": "napi version"
|
|
41
41
|
},
|
|
42
42
|
"optionalDependencies": {
|
|
43
|
-
"@ahqstore/cli-win32-x64-msvc": "0.5.
|
|
44
|
-
"@ahqstore/cli-darwin-x64": "0.5.
|
|
45
|
-
"@ahqstore/cli-linux-x64-gnu": "0.5.
|
|
46
|
-
"@ahqstore/cli-darwin-arm64": "0.5.
|
|
47
|
-
"@ahqstore/cli-linux-arm64-gnu": "0.5.
|
|
48
|
-
"@ahqstore/cli-win32-arm64-msvc": "0.5.
|
|
49
|
-
"@ahqstore/cli-win32-ia32-msvc": "0.5.
|
|
50
|
-
"@ahqstore/cli-darwin-universal": "0.5.
|
|
51
|
-
"@ahqstore/cli-linux-riscv64-gnu": "0.5.
|
|
43
|
+
"@ahqstore/cli-win32-x64-msvc": "0.5.4",
|
|
44
|
+
"@ahqstore/cli-darwin-x64": "0.5.4",
|
|
45
|
+
"@ahqstore/cli-linux-x64-gnu": "0.5.4",
|
|
46
|
+
"@ahqstore/cli-darwin-arm64": "0.5.4",
|
|
47
|
+
"@ahqstore/cli-linux-arm64-gnu": "0.5.4",
|
|
48
|
+
"@ahqstore/cli-win32-arm64-msvc": "0.5.4",
|
|
49
|
+
"@ahqstore/cli-win32-ia32-msvc": "0.5.4",
|
|
50
|
+
"@ahqstore/cli-darwin-universal": "0.5.4",
|
|
51
|
+
"@ahqstore/cli-linux-riscv64-gnu": "0.5.4"
|
|
52
52
|
}
|
|
53
53
|
}
|
package/src/app/build/mod.rs
CHANGED
|
@@ -197,17 +197,16 @@ pub fn build_config(upload: bool, gh_action: bool) {
|
|
|
197
197
|
// }
|
|
198
198
|
|
|
199
199
|
let config_file = to_string_pretty(&final_config).unwrap();
|
|
200
|
-
let config_file = to_string(config_file.as_bytes()).unwrap();
|
|
201
200
|
|
|
202
201
|
if !gh_action {
|
|
203
|
-
println!("
|
|
202
|
+
println!("{} {}.json", &*INFO, &app_id);
|
|
204
203
|
println!("{}", &config_file);
|
|
205
204
|
}
|
|
206
205
|
|
|
207
206
|
if upload {
|
|
208
207
|
let uup = gh_r
|
|
209
208
|
.upload_url
|
|
210
|
-
.replace("{?name,label}", &format!("?name={app_id}.
|
|
209
|
+
.replace("{?name,label}", &format!("?name={app_id}.json"));
|
|
211
210
|
|
|
212
211
|
let resp = CLIENT
|
|
213
212
|
.post(uup)
|