fix(nodemon): ignore CHANGELOG.md on watch

Because this started annoying the carp out of me once I linked @colegleason's commit-msg hook.
This commit is contained in:
Sabe Jones
2014-01-19 21:59:35 -06:00
parent ad4ca6655a
commit d6c55952da
2 changed files with 2 additions and 1 deletions

View File

@@ -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*']
}
},