Improve formatting of gulp task

This commit is contained in:
Blade Barringer
2015-08-05 18:12:28 -05:00
parent 47681e90bd
commit e34c30a37f

View File

@@ -58,9 +58,7 @@ gulp.task('test:common:clean', (cb) => {
pipe(exec(testBin("mocha test/common"), () => cb()));
});
gulp.task('test:common:watch', [
'test:common:clean'
], () => {
gulp.task('test:common:watch', ['test:common:clean'], () => {
gulp.watch(['common/script/**', 'test/common/**'], ['test:common:clean']);
});