Skip to content

Commit 74d41b9

Browse files
authored
Fix crash in watch-local
1 parent d16cf76 commit 74d41b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ const watchLocalPatterns = [
542542
gulp.task(
543543
"watch-local",
544544
"Watches for changes to projects in src/ (but does not execute tests).",
545-
() => gulp.watch(watchLocalPatterns, "local"));
545+
() => gulp.watch(watchLocalPatterns, ["local"]));
546546

547547
const watchPatterns = [
548548
"src/tsconfig-base.json",
@@ -632,4 +632,4 @@ gulp.task(
632632
"clean:scripts",
633633
"clean-rules",
634634
"clean-built"
635-
]);
635+
]);

0 commit comments

Comments
 (0)