mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-01-21 09:14:17 +00:00
7 lines
139 B
Rust
7 lines
139 B
Rust
|
use std::process::Command;
|
||
|
|
||
|
fn main() {
|
||
|
println!("cargo:rerun-if-changed=interpreter.ts");
|
||
|
Command::new("tsc").spawn().unwrap();
|
||
|
}
|