mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
fix(nodemon): ignore CHANGELOG.md on watch
Because this started annoying the carp out of me once I linked @colegleason's commit-msg hook.
This commit is contained in:
@@ -3,5 +3,6 @@ views/*
|
||||
build
|
||||
build/*
|
||||
Gruntfile.js
|
||||
CHANGELOG.md
|
||||
.idea*
|
||||
.git*
|
||||
|
||||
@@ -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*']
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user