Skip to content

Commit

Permalink
Merge pull request #28 from PascalPrecht/conventional-changelogs
Browse files Browse the repository at this point in the history
feat(conventional-changelog): add conventional-changelog
  • Loading branch information
geddski committed May 6, 2013
2 parents a2b3eb5 + 72c67e3 commit df1cf17
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
11 changes: 10 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-release');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-conventional-changelog');

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),

karma: {
options: {
configFile: 'karma.conf.js',
Expand All @@ -19,6 +22,12 @@ module.exports = function(grunt) {
}
},

changelog: {
options: {
dest: 'CHANGELOG.md'
}
},

watch: {
tests: {
files: 'test/**/*.js',
Expand All @@ -31,4 +40,4 @@ module.exports = function(grunt) {
grunt.loadTasks('tasks');

grunt.registerTask('test', ['karma:continuous']);
};
};
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"grunt": "~0.4.1",
"expect.js": "~0.2.0",
"grunt-release": "~0.2.0",
"grunt-contrib-watch": "~0.2.0"
"grunt-contrib-watch": "~0.2.0",
"grunt-conventional-changelog": "0.0.12"
},
"peerDependencies": {
"grunt": "0.4.x"
Expand Down

0 comments on commit df1cf17

Please sign in to comment.