Add watch task

This commit is contained in:
Wesley Wigham 2016-06-20 15:35:32 -07:00
parent 0e5b741d42
commit 8ca1910792
No known key found for this signature in database
GPG Key ID: D59F87F60C5400C9

View File

@ -1048,3 +1048,7 @@ gulp.task("lint", "Runs tslint on the compiler sources. Optional arguments are:
gulp.task("default", "Runs 'local'", ["local"]);
gulp.task("watch", "Watches the src/ directory for changes and executes runtests-parallel.", [], () => {
gulp.watch("src/**/*.*", ["runtests-parallel"]);
});