add watch-test task

This commit is contained in:
Joao Moreno 2016-06-01 11:06:17 +02:00
parent 99240bdca2
commit 6654d0e2eb

View file

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