monorepo/kifu/kifu-core/build.rs

13 lines
236 B
Rust
Raw Normal View History

2023-04-21 02:50:48 +00:00
use std::process::Command;
fn main() {
Command::new("typeshare")
.args(&[
".",
"--lang=typescript",
"--output-file=typeshare/core.d.ts",
])
.status()
.unwrap();
}