From c528f4a4276763d4d1f0dfa6b48141d63d5abc42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Estev=C3=A3o=20Soares=20dos=20Santos?= Date: Mon, 19 Jan 2015 16:27:28 +0000 Subject: [PATCH] chore(changelog): add support to automatically create changelogs --- Gruntfile.js | 4 ++++ package.json | 1 + 2 files changed, 5 insertions(+) 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",