From d6c55952da8b49f36e9d8e4570d80931d081343d Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Sun, 19 Jan 2014 21:59:35 -0600 Subject: [PATCH] fix(nodemon): ignore CHANGELOG.md on watch Because this started annoying the carp out of me once I linked @colegleason's commit-msg hook. --- .nodemonignore | 1 + Gruntfile.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.nodemonignore b/.nodemonignore index add92e05a3..216c52f8b0 100644 --- a/.nodemonignore +++ b/.nodemonignore @@ -3,5 +3,6 @@ views/* build build/* Gruntfile.js +CHANGELOG.md .idea* .git* diff --git a/Gruntfile.js b/Gruntfile.js index 6967a02e6c..bf7c174bb9 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -79,7 +79,7 @@ module.exports = function(grunt) { nodemon: { dev: { - ignoredFiles: ['public/*', 'Gruntfile.js', 'views/*', 'build/*', '.idea*', '.git*'] + ignoredFiles: ['public/*', 'Gruntfile.js', 'CHANGELOG.md', 'views/*', 'build/*', '.idea*', '.git*'] } },