From ed1dbb71f29d2af8ef62484cf60c7a6d3c812956 Mon Sep 17 00:00:00 2001 From: Andy Joslin Date: Mon, 10 Mar 2014 09:46:55 -0600 Subject: [PATCH] chore(gulp): dont watch docs --- gulpfile.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index c31864fcc9f..e3aebe48a89 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -43,8 +43,7 @@ gulp.task('docs', function() { var IS_WATCH = false; gulp.task('watch', function() { IS_WATCH = true; - gulp.watch('js/**/*.js', ['bundle', 'docs']); - gulp.watch('docs/**/*', ['docs']); + gulp.watch('js/**/*.js', ['bundle']); gulp.watch('scss/**/*.scss', ['sass']); });