From 1036f0549e738be60b21589238ee173313043c8d Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Sun, 29 Dec 2013 19:11:32 -0600 Subject: [PATCH] Add .idea and .git to nodemon ignore list, to reduce unnecessary server bounces during dev --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 3ea64fbf1f..6294aed2dc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -57,7 +57,7 @@ module.exports = function(grunt) { nodemon: { dev: { - ignoredFiles: ['public/*', 'Gruntfile.js', 'views/*', 'build/*'] + ignoredFiles: ['public/*', 'Gruntfile.js', 'views/*', 'build/*', '.idea*', '.git*'] } },