Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
Merge pull request #119 from PascalPrecht/grunt-conventional-changelog
Browse files Browse the repository at this point in the history
chore(grunt): add grunt-conventional-changelog to automate changelog generation
  • Loading branch information
BaconSoap committed Dec 18, 2013
2 parents fb5a7c4 + 6c1261d commit 262528a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-conventional-changelog');

// Project configuration.
initConfig = {
Expand Down Expand Up @@ -46,6 +47,11 @@ module.exports = function (grunt) {
jshintrc: '.jshintrc'
}
},
changelog: {
options: {
dest: 'CHANGELOG.md'
}
}
};

// Register tasks
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-watch": "~0.5.3",
"grunt-karma": "~0.6.2",
"karma": "~0.10.2"
"karma": "~0.10.2",
"grunt-conventional-changelog": "~1.0.0"
}
}

0 comments on commit 262528a

Please sign in to comment.