Skip to content

Commit d06d412

Browse files
committed
fix: stop grunt-bump from trying to bump the CHANGELOG.md
1 parent 2c7796d commit d06d412

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,13 @@ module.exports = function (grunt) {
111111

112112
bump: {
113113
options: {
114-
files: ['package.json', 'bower.json', '<%= pkg.name %>.jquery.json', 'CHANGELOG.md'],
114+
files: ['package.json', 'bower.json', '<%= pkg.name %>.jquery.json'],
115115
push: true,
116116
pushTo: 'origin',
117117
createTag: true,
118118
tagName: 'v%VERSION%',
119119
tagMessage: 'Version %VERSION%',
120-
commitFiles: '<%= bump.options.files %>',
120+
commitFiles: ['<%= bump.options.files %>', 'CHANGELOG.md'],
121121
commitMessage: 'Bumped version to v%VERSION%'
122122
}
123123
},

0 commit comments

Comments
 (0)