mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
chore(logging): ignore *.log when running nodemon to avoid loop
This commit is contained in:
parent
2188b5a6c0
commit
441c3cf1d7
2 changed files with 2 additions and 1 deletions
|
|
@ -6,4 +6,5 @@ Gruntfile.js
|
|||
CHANGELOG.md
|
||||
.idea*
|
||||
.git*
|
||||
*.log
|
||||
newrelic_agent.log
|
||||
|
|
|
|||
|
|
@ -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']
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue