infinity-build-core 0.3.2

Core build abstractions for the infinity-msfs toolchain. Defines the Builder trait, common error/artifact types, and config primitives shared by Rust/WASM and JS/TS build paths.
Documentation
1
2
3
4
5
6
use crate::BuildResult;
use std::process::Command;

pub trait Runner: Send + Sync {
    fn run(&self, cmd: &mut Command, label: &str) -> BuildResult<()>;
}