Skip to content

Commit 38f1100

Browse files
committed
Fix logic error
1 parent 55e1a7d commit 38f1100

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/application.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ export class Application extends AbstractComponent<
552552
this.logger.verbose(
553553
`Watching ${nicePath(path)}, shouldRestart=${shouldRestart}`,
554554
);
555-
if (!this.watchers.has(path)) return;
555+
if (this.watchers.has(path)) return;
556556
this.watchers.set(
557557
path,
558558
host.watchFile(

0 commit comments

Comments
 (0)