mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +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
|
||||||
build/*
|
build/*
|
||||||
Gruntfile.js
|
Gruntfile.js
|
||||||
|
CHANGELOG.md
|
||||||
.idea*
|
.idea*
|
||||||
.git*
|
.git*
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ module.exports = function(grunt) {
|
|||||||
|
|
||||||
nodemon: {
|
nodemon: {
|
||||||
dev: {
|
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