chore(gulp): dont watch docs

This commit is contained in:
Andy Joslin
2014-03-10 09:46:55 -06:00
parent 7ec0605e06
commit ed1dbb71f2

View File

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