typebridge-cli 0.3.2

Standalone CLI for typewriter generation, drift checks, and watch mode
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    let mut args = vec![std::ffi::OsString::from("typewriter")];
    args.extend(std::env::args_os().skip(1));

    std::process::exit(match typebridge_cli::run_with_args(args) {
        Ok(code) => code,
        Err(err) => {
            eprintln!("cargo-typewriter: {}", err);
            1
        }
    });
}