prettier
All checks were successful
Build / build (pull_request) Successful in 2m2s

This commit is contained in:
Sainan 2025-09-03 15:43:44 +02:00
parent 113b7f4a77
commit c17cb4ee51

View File

@ -50,7 +50,11 @@ function run(changedFile) {
buildproc = undefined; buildproc = undefined;
if (code === 0) { if (code === 0) {
console.log(`${cangoraw ? "Verified" : "Built"} in ${Date.now() - thisbuildstart} ms`); console.log(`${cangoraw ? "Verified" : "Built"} in ${Date.now() - thisbuildstart} ms`);
runproc = spawn("npm", ["run", cangoraw ? (process.versions.bun ? "raw:bun" : "raw") : "start", "--", ...args], spawnopts); runproc = spawn(
"npm",
["run", cangoraw ? (process.versions.bun ? "raw:bun" : "raw") : "start", "--", ...args],
spawnopts
);
runproc.on("exit", () => { runproc.on("exit", () => {
runproc = undefined; runproc = undefined;
}); });