Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Commit

Permalink
Replace grunt bump and changelog to use npm
Browse files Browse the repository at this point in the history
  • Loading branch information
John Hunter committed Dec 14, 2019
1 parent c165a7c commit 2b5d29f
Show file tree
Hide file tree
Showing 3 changed files with 892 additions and 1,604 deletions.
11 changes: 5 additions & 6 deletions Gruntfile.js
Expand Up @@ -47,10 +47,6 @@ module.exports = function(grunt) {
tests: ['test/*_test.js'],
},

changelog: {
options: {}
}

});

// Actually load this plugin's task(s).
Expand All @@ -59,8 +55,11 @@ module.exports = function(grunt) {
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-conventional-changelog');
grunt.loadNpmTasks('grunt-bump');

grunt.registerTask('foo', 'A sample task that logs stuff.', function (level) {
level = level || 'patch';
grunt.log.writeln(this.name + ":" + level);
});

// Whenever the "test" task is run, first clean the "tmp" dir, then run this
// plugin's task(s), then test the result.
Expand Down

0 comments on commit 2b5d29f

Please sign in to comment.