From 26de75679cfb001e2313989d8f24feef1374eb4e Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 21 Sep 2023 18:37:17 +0200 Subject: [PATCH] Fixed development mode on Linux --- tools/build/_/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build/_/index.ts b/tools/build/_/index.ts index 82b7dcdf7..7965fad62 100644 --- a/tools/build/_/index.ts +++ b/tools/build/_/index.ts @@ -137,7 +137,7 @@ export function watch( ): Observable { return fromEvent( chokidar.watch(pattern, options), - "change" + "change", file => file ) as Observable }