watch should only compile

This commit is contained in:
Joao Moreno 2016-01-28 20:04:53 +01:00
parent 1e1887da98
commit 3c0f13022a

View file

@ -38,8 +38,8 @@ function test(cb) {
gulp.task('test', ['compile'], test);
gulp.task('just-test', ['just-compile'], test);
gulp.task('watch', ['test'], function () {
gulp.watch(['src/**', 'typings/**'], ['just-test']);
gulp.task('watch', ['compile'], function () {
gulp.watch(['src/**', 'typings/**'], ['just-compile']);
});
gulp.task('default', ['watch']);