use std::process::Command; fn main() { Command::new("npm") .args(&["run", "build-dev"]) .current_dir("./vade-ui") .status() .unwrap(); }