From 62278566c162629c4f0f3e4504cbbe0557a35674 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Tue, 30 Sep 2014 18:26:57 +0900 Subject: [PATCH] Renaming watch task --- client/gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/gulpfile.js b/client/gulpfile.js index 8b869f2..e9ecbc2 100644 --- a/client/gulpfile.js +++ b/client/gulpfile.js @@ -62,11 +62,11 @@ gulp.task('html_release', function() { .pipe(gulp.dest('./')); }); -gulp.task('watch', function() { +gulp.task('watch_debug', function() { gulp.watch(paths.html, ['html_debug']); }); gulp.task('debug', ['lint', 'html_debug']); gulp.task('release', ['lint', 'js', 'css', 'html_release']); -gulp.task('default', ['html_debug', 'watch']); +gulp.task('default', ['html_debug', 'watch_debug']);