Files
regex-tools/scripts/build-rust-engine.mjs

16 lines
589 B
JavaScript

import path from "node:path";
import { fileURLToPath } from "node:url";
import { buildRustPack } from "./rust-engine-pack.mjs";
const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");
const arguments_ = process.argv.slice(2);
if (arguments_.length < 1 || arguments_.length > 2) {
throw new Error(
"Usage: node scripts/build-rust-engine.mjs RUST_TOOLCHAIN_ROOT [.engine-build/rust]",
);
}
const result = await buildRustPack(root, arguments_[0], arguments_[1]);
console.log(
`Built and verified ${result.metadata.semanticIdentity} at ${result.output}.`,
);