simplify gulpfile for watch:browser

This commit is contained in:
Manuel Araoz 2014-11-26 19:48:28 -03:00
parent 4fb0ddd8f2
commit 115c581bd0

View File

@ -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']));