1 Commits

Author SHA1 Message Date
Sebastian Seedorf
155a02665a Fixed v0.42.0 2020-04-30 18:55:23 +02:00

2
mod.ts
View File

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