From 155a02665abd1311509b54f35aea5afc3cb47793 Mon Sep 17 00:00:00 2001 From: Sebastian Seedorf Date: Thu, 30 Apr 2020 18:55:23 +0200 Subject: [PATCH] Fixed v0.42.0 --- mod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod.ts b/mod.ts index 3f479fb..bd50a6a 100644 --- a/mod.ts +++ b/mod.ts @@ -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);