chore(logging): ignore *.log when running nodemon to avoid loop

This commit is contained in:
Cole Gleason 2014-02-01 02:00:49 -06:00
parent 2188b5a6c0
commit 441c3cf1d7
2 changed files with 2 additions and 1 deletions

View file

@ -6,4 +6,5 @@ Gruntfile.js
CHANGELOG.md
.idea*
.git*
*.log
newrelic_agent.log

View file

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