From 441c3cf1d74ce990322998231acf339385f728b6 Mon Sep 17 00:00:00 2001 From: Cole Gleason Date: Sat, 1 Feb 2014 02:00:49 -0600 Subject: [PATCH] chore(logging): ignore *.log when running nodemon to avoid loop --- .nodemonignore | 1 + Gruntfile.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.nodemonignore b/.nodemonignore index f4e0b53926..d104457dfc 100644 --- a/.nodemonignore +++ b/.nodemonignore @@ -6,4 +6,5 @@ Gruntfile.js CHANGELOG.md .idea* .git* +*.log newrelic_agent.log diff --git a/Gruntfile.js b/Gruntfile.js index e5fa1ed3ed..0d7247aa83 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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'] } },