From 470a91e6b01c0537702c403db0c7e0a54fdb2358 Mon Sep 17 00:00:00 2001 From: oleg Date: Tue, 14 Jul 2015 01:16:38 +0300 Subject: [PATCH] do not watch for data dir --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 6e3ff05..8b9a777 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -28,7 +28,7 @@ gulp.task('develop', function() { gulp.watch('static/css/**/*.less', ['less']); return nodemon({ - ignore: ['static/**/*.js', 'app/**/*.js', 'node_modules/**'], + ignore: ['static/**/*.js', 'app/**/*.js', 'node_modules/**', 'data/**'], script: 'app.js', ext: 'js' });