Generate webui artifacts as part of build process

This commit is contained in:
Igor Katson 2024-08-12 20:12:08 +01:00
parent 14aa4a2f11
commit 6d2c32fb48
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5

View file

@ -2,26 +2,29 @@ use std::path::Path;
use std::process::Command;
fn main() {
let webui_dir = Path::new("webui");
let webui_src_dir = webui_dir.join("src");
#[cfg(feature = "webui")]
{
let webui_dir = Path::new("webui");
let webui_src_dir = webui_dir.join("src");
println!("cargo:rerun-if-changed={}", webui_src_dir.to_str().unwrap());
println!("cargo:rerun-if-changed={}", webui_src_dir.to_str().unwrap());
// Run "npm run build" in the webui directory
let output = Command::new("npm")
.arg("run")
.arg("build")
.current_dir(webui_dir)
.output()
.expect("Failed to execute npm run build");
// Run "npm run build" in the webui directory
let output = Command::new("npm")
.arg("run")
.arg("build")
.current_dir(webui_dir)
.output()
.expect("Failed to execute npm run build");
if !output.status.success() {
panic!(
"npm run build failed with output: {}",
String::from_utf8_lossy(&output.stderr)
);
if !output.status.success() {
panic!(
"npm run build failed with output: {}",
String::from_utf8_lossy(&output.stderr)
);
}
// Optionally print the stdout output if you want to see the build logs
println!("{}", String::from_utf8_lossy(&output.stdout));
}
// Optionally print the stdout output if you want to see the build logs
println!("{}", String::from_utf8_lossy(&output.stdout));
}