slight build update

This commit is contained in:
MathMan05 2025-05-17 15:55:21 -05:00
parent 81a476e46b
commit c7a96eea92
3 changed files with 8 additions and 4 deletions

View file

@ -87,7 +87,9 @@ if (process.argv.includes("watch")) {
continue;
}
last = Date.now();
await build();
try {
await build();
} catch {}
}
})();
(async () => {
@ -96,7 +98,9 @@ if (process.argv.includes("watch")) {
continue;
}
last = Date.now();
await build();
try {
await build();
} catch {}
}
})();
}