Skip to content

Commit 6e57d62

Browse files
committed
Disable gulp.watch for now
1 parent ad4338d commit 6e57d62

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

Gulpfile.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ gulp.task("clean:" + webTestServerJs, /*help*/ false, [project.clean(webTestServ
315315

316316
const bundlePath = path.resolve("built/local/bundle.js");
317317

318-
// TODO(rbuckton)
318+
// TODO(rbuckton): Clean up browserify logic
319319
gulp.task(
320320
"browserify",
321321
"Runs browserify on run.js to produce a file suitable for running tests in the browser",
@@ -520,11 +520,12 @@ gulp.task(
520520
"Runs 'local'",
521521
["local"]);
522522

523-
gulp.task(
524-
"watch",
525-
"Watches the src/ directory for changes and executes runtests-parallel.",
526-
[],
527-
() => gulp.watch("src/**/*.*", ["runtests-parallel"]));
523+
// TODO(rbuckton): Investigate restoring gulp.watch() functionality.
524+
// gulp.task(
525+
// "watch",
526+
// "Watches the src/ directory for changes and executes runtests-parallel.",
527+
// [],
528+
// () => gulp.watch("src/**/*.*", ["runtests-parallel"]));
528529

529530
gulp.task("clean-built", /*help*/ false, ["clean:" + diagnosticInformationMapTs], () => del(["built"]));
530531
gulp.task(

0 commit comments

Comments
 (0)