do not watch for data dir

This commit is contained in:
oleg 2015-07-14 01:16:38 +03:00
parent 512078da30
commit 470a91e6b0

View File

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