Fixed v0.42.0

This commit is contained in:
Sebastian Seedorf
2020-04-30 18:55:23 +02:00
parent 35bc1994dc
commit 155a02665a

2
mod.ts
View File

@@ -15,7 +15,7 @@ function runApp() {
runApp();
for await (const event of Deno.fsEvents('.')) {
for await (const event of Deno.watchFs('.')) {
if (event.kind !== "access") {
if (timeout) clearTimeout(timeout);
timeout = setTimeout(runApp, throttle);