mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
19 lines
673 B
Rust
19 lines
673 B
Rust
fn main() {
|
|
// Exit if on CI.
|
|
// The built files should be checked into git, so want to run tests etc on what's actually in repo,
|
|
// rather than regenerating them.
|
|
if std::option_env!("CI") == Some("true") {
|
|
return;
|
|
}
|
|
|
|
// Re-run if NodeJS build script or AST types change
|
|
println!("cargo:rerun-if-changed=scripts");
|
|
println!("cargo:rerun-if-changed=../oxc_ast/src/ast");
|
|
|
|
// Run NodeJS build script
|
|
let status = std::process::Command::new("node")
|
|
.arg("./scripts/build.mjs")
|
|
.status()
|
|
.expect("Failed to run NodeJS build script");
|
|
assert!(status.success(), "Failed to run NodeJS build script");
|
|
}
|