Skip to content

Commit 8caeb43

Browse files
committed
🐛 fix build target env
1 parent 7783bb9 commit 8caeb43

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ homepage = "https://github.com/XDSEC/WebSocketReflectorX"
99
license = "MIT"
1010
repository = "https://github.com/XDSEC/WebSocketReflectorX"
1111
rust-version = "1.88.0"
12-
version = "0.5.7"
12+
version = "0.5.8"
1313

1414
[profile.release]
1515
codegen-units = 1

crates/desktop/build.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ fn main() {
2828
"{version}-{}-{}-{}",
2929
build_target::target_arch(),
3030
build_target::target_os(),
31-
build_target::target_env().unwrap(),
31+
build_target::target_env()
32+
.map(|v| v.as_str().to_string())
33+
.unwrap_or("general".to_string()),
3234
);
3335
fs::write(
3436
dest_path,

packages/client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
"LICENSE"
2929
],
3030
"dependencies": {
31-
"ky": "^1.8.1",
31+
"ky": "^1.8.2",
3232
"nanoid": "^5.1.5"
3333
},
3434
"devDependencies": {
35-
"@types/node": "^22.15.14",
35+
"@types/node": "^24.1.0",
3636
"typescript": "^5.8.3"
3737
}
3838
}

0 commit comments

Comments
 (0)