From c17cb4ee511cfd450ecea1090a6404f2e9cd09af Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Wed, 3 Sep 2025 15:43:44 +0200 Subject: [PATCH] prettier --- scripts/dev.cjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/dev.cjs b/scripts/dev.cjs index db7d6e0c..fad64aba 100644 --- a/scripts/dev.cjs +++ b/scripts/dev.cjs @@ -50,7 +50,11 @@ function run(changedFile) { buildproc = undefined; if (code === 0) { 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 = undefined; });