Merge pull request #2491 from HabitRPG/sabe/tweak

fix(nodemon): ignore CHANGELOG.md on watch
This commit is contained in:
Tyler Renelle
2014-01-20 15:27:28 -08:00
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -3,5 +3,6 @@ views/*
build
build/*
Gruntfile.js
CHANGELOG.md
.idea*
.git*
+1 -1
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*']
}
},