From e34c30a37f60e519e556d8d4d656404748d9d73f Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Wed, 5 Aug 2015 18:12:28 -0500 Subject: [PATCH] Improve formatting of gulp task --- tasks/gulp-tests.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tasks/gulp-tests.js b/tasks/gulp-tests.js index 5bd5789689..09213df410 100644 --- a/tasks/gulp-tests.js +++ b/tasks/gulp-tests.js @@ -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']); });