more reodering fixes

This commit is contained in:
MathMan05 2025-05-02 12:06:20 -05:00
parent 169f56b5c5
commit f0fd2e59b3
4 changed files with 30 additions and 35 deletions

View file

@ -79,7 +79,7 @@ await build();
if (process.argv.includes("watch")) {
let last = Date.now();
(async () => {
for await (const thing of fs.watch(path.join(__dirname, "src"))) {
for await (const thing of fs.watch(path.join(__dirname, "src"), {recursive: true})) {
if (Date.now() - last < 100) {
continue;
}