summarylogtreecommitdiffstats
path: root/community.patch
blob: 932f5f0b1b52273e0c6160bf97f0ebaa04321cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2477,7 +2477,7 @@
 
 [[package]]
 name = "weylus"
-version = "2025.11.4"
+version = "2026.5.21"
 dependencies = [
  "autopilot",
  "bitflags 2.11.0",

--- a/build.rs
+++ b/build.rs
@@ -46,7 +46,9 @@ fn main() {
     println!("cargo:rerun-if-changed=ts/lib.ts");
 
     #[cfg(not(target_os = "windows"))]
-    let mut tsc_command = Command::new("tsc");
+    let mut tsc_command = Command::new("pnpm");
+    #[cfg(not(target_os = "windows"))]
+    tsc_command.args(&["exec", "tsc"]);
 
     #[cfg(target_os = "windows")]
     let mut tsc_command = Command::new("cmd");