From dc6533d284d77ebd293e9e140a940c92ce894dd1 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Wed, 20 Feb 2013 03:22:51 +0100 Subject: [PATCH] grunt-bump just got updated, uncomment its tasks. --- Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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']); };