chore(logging): ignore *.log when running nodemon to avoid loop
This commit is contained in:
@@ -6,4 +6,5 @@ Gruntfile.js
|
||||
CHANGELOG.md
|
||||
.idea*
|
||||
.git*
|
||||
*.log
|
||||
newrelic_agent.log
|
||||
|
||||
+1
-1
@@ -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']
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user