Add .idea and .git to nodemon ignore list, to reduce unnecessary server bounces during dev

This commit is contained in:
Sabe Jones
2013-12-29 19:11:32 -06:00
parent 61dfb8d129
commit 1036f0549e

View File

@@ -57,7 +57,7 @@ module.exports = function(grunt) {
nodemon: {
dev: {
ignoredFiles: ['public/*', 'Gruntfile.js', 'views/*', 'build/*']
ignoredFiles: ['public/*', 'Gruntfile.js', 'views/*', 'build/*', '.idea*', '.git*']
}
},