diff --git a/Gruntfile.js b/Gruntfile.js index 5121e2d2d..ac5216778 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -75,7 +75,7 @@ module.exports = function(grunt) { } }); - // grunt.loadNpmTasks('grunt-bump'); + grunt.loadNpmTasks('grunt-bump'); grunt.loadNpmTasks('grunt-contrib-clean'); grunt.loadNpmTasks('grunt-contrib-coffee'); grunt.loadNpmTasks('grunt-contrib-concat'); @@ -84,7 +84,7 @@ module.exports = function(grunt) { grunt.registerTask('default', ['concat:coffee', 'coffee:script', 'concat:script', 'concat:metadata', 'clean']); grunt.registerTask('release', ['default', 'exec:commit', 'exec:push']); - // grunt.registerTask('patch', 'bump'); - // grunt.registerTask('upgrade', 'bump:minor'); + grunt.registerTask('patch', ['bump']); + grunt.registerTask('upgrade', ['bump:minor']); };