diff --git a/Gruntfile.js b/Gruntfile.js index 850f386..14c2f60 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -51,6 +51,9 @@ module.exports = function (grunt) { ] } }, + changelog: { + options: {} + }, simplemocha: { node: { src: 'test/node/**/*.js', @@ -77,6 +80,7 @@ module.exports = function (grunt) { grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadNpmTasks('grunt-simple-mocha'); grunt.loadNpmTasks('grunt-jscs'); + grunt.loadNpmTasks('grunt-conventional-changelog'); grunt.registerTask('lint', ['jshint', 'jscs']); grunt.registerTask('test', ['lint', 'concat', 'simplemocha']); diff --git a/package.json b/package.json index eacf65b..852f4db 100644 --- a/package.json +++ b/package.json @@ -42,6 +42,7 @@ "grunt-contrib-concat": "^0.5.0", "grunt-contrib-jshint": "^0.10.0", "grunt-contrib-uglify": "^0.6.0", + "grunt-conventional-changelog": "^1.1.0", "grunt-jscs": "^1.2.0", "grunt-simple-mocha": "^0.4.0", "jscs": "^1.10.0",