From 6c1261dbb334cc1b5ca0b113c127900006a674c3 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Wed, 4 Dec 2013 22:40:55 +0100 Subject: [PATCH] chore(grunt): adds grunt-conventional-changelog see http://github.com/btford/grunt-conventional-changelog --- Gruntfile.js | 6 ++++++ package.json | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index ea8dc33..1e93fc9 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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 = { @@ -46,6 +47,11 @@ module.exports = function (grunt) { jshintrc: '.jshintrc' } }, + changelog: { + options: { + dest: 'CHANGELOG.md' + } + } }; // Register tasks diff --git a/package.json b/package.json index 77b3e84..ca685c3 100644 --- a/package.json +++ b/package.json @@ -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" } }