1

Renaming watch task

This commit is contained in:
Alex Yatskov 2014-09-30 18:26:57 +09:00
parent 76a24cd80d
commit 62278566c1

View File

@ -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']);