Fix crash in watch-local

This commit is contained in:
Wesley Wigham 2019-01-25 10:55:24 -08:00 committed by GitHub
parent d16cf761ba
commit 74d41b926a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -542,7 +542,7 @@ const watchLocalPatterns = [
gulp.task(
"watch-local",
"Watches for changes to projects in src/ (but does not execute tests).",
() => gulp.watch(watchLocalPatterns, "local"));
() => gulp.watch(watchLocalPatterns, ["local"]));
const watchPatterns = [
"src/tsconfig-base.json",
@ -632,4 +632,4 @@ gulp.task(
"clean:scripts",
"clean-rules",
"clean-built"
]);
]);