From 115c581bd0c28232a0a631ac5099c79112b39739 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Wed, 26 Nov 2014 19:48:28 -0300 Subject: [PATCH] simplify gulpfile for watch:browser --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 9ea31e9..8919e52 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -67,7 +67,7 @@ gulp.task('watch:lint', function() { }); gulp.task('watch:browser', function() { - return gulp.watch(alljs, ['browser', 'browser-test']); + return gulp.watch(alljs, ['browser-all']); }); gulp.task('coverage', shell.task(['istanbul cover _mocha -- --recursive']));