UNPKG

251 BJavaScriptView Raw
1module.exports = function (grunt) {
2 grunt.loadNpmTasks('grunt-release');
3 grunt.loadNpmTasks('grunt-conventional-changelog');
4 grunt.initConfig({
5
6 changelog: {
7 options: {
8 // Task-specific options go here.
9 }
10 }
11
12 });
13};