diff options
Diffstat (limited to 'cli/js/ops/fs_events.ts')
-rw-r--r-- | cli/js/ops/fs_events.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/ops/fs_events.ts b/cli/js/ops/fs_events.ts index fb78c6196..ffe19b4d7 100644 --- a/cli/js/ops/fs_events.ts +++ b/cli/js/ops/fs_events.ts @@ -38,7 +38,7 @@ class FsWatcher implements AsyncIterableIterator<FsEvent> { export function watchFs( paths: string | string[], - options: FsWatcherOptions = { recursive: true } + options: FsWatcherOptions = { recursive: true }, ): AsyncIterableIterator<FsEvent> { return new FsWatcher(Array.isArray(paths) ? paths : [paths], options); } |