(chore): Add lint:watch task

This commit is contained in:
Blade Barringer
2015-11-18 17:23:33 -06:00
parent cb1f745d39
commit 5947dcf68b

View File

@@ -63,3 +63,11 @@ gulp.task('lint:tests', () => {
});
gulp.task('lint', ['lint:server', 'lint:common']);
gulp.task('lint:watch', () => {
gulp.watch([
'./website/src/**/*.js',
'./common/script/**/*.js',
'./test/**/*.js',
], ['lint']);
});