From 3aaa71d7c5266a2c9eedd820910cd606e22e0535 Mon Sep 17 00:00:00 2001 From: Dmitry Filimonov Date: Wed, 13 Jan 2016 18:54:03 +0300 Subject: [PATCH] deleted the watch tasks because it's the same as serve --- gulpfile.babel.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 41a48d3..937d634 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -19,7 +19,3 @@ gulp.task('travis-ci', ['build:website'], () => { gulp.task('default', ['clean'], () => { gulp.start('build'); }); - -gulp.task('watch', ['default'], () => { - gulp.watch('src/**/*', ['default']); -});