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

Commit 3b72922

Browse files
0x-r4bbitwesleycho
authored andcommitted
Merged db2b9e8
1 parent 7d02422 commit 3b72922

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

gruntFile.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ module.exports = function (grunt) {
22

33
grunt.loadNpmTasks('grunt-karma');
44
grunt.loadNpmTasks('grunt-contrib-jshint');
5+
grunt.loadNpmTasks('grunt-conventional-changelog');
56

67
// Default task.
78
grunt.registerTask('default', ['jshint', 'karma']);
@@ -31,7 +32,12 @@ module.exports = function (grunt) {
3132
eqnull:true,
3233
globals:{}
3334
}
35+
},
36+
changelog: {
37+
options: {
38+
dest: 'CHANGELOG.md'
39+
}
3440
}
3541
});
3642

37-
};
43+
};

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"grunt": "~0.4.4",
1212
"grunt-karma": "~0.8.2",
1313
"grunt-contrib-jshint": "~0.10.0",
14+
"grunt-conventional-changelog": "~1.0.0",
1415
"karma-jasmine": "~0.2.2",
1516
"karma-chrome-launcher": "~0.1.3",
1617
"karma-firefox-launcher": "~0.1.3"

0 commit comments

Comments
 (0)