From 13fb3e80b0fb14c4e678ac6ee7dd3a6130d22aef Mon Sep 17 00:00:00 2001 From: mzabriskie Date: Thu, 18 Sep 2014 13:01:25 -0600 Subject: [PATCH] Adding descriptions to grunt tasks --- Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 972e703..3cbb08a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -68,9 +68,9 @@ module.exports = function(grunt) { } }); - grunt.registerTask('test', ['webpack:global', 'nodeunit', 'karma:single']); - grunt.registerTask('build', ['webpack']); - grunt.registerTask('publish', ['clean', 'test', 'build', 'usebanner', 'update_json']); + grunt.registerTask('test', 'Run the jasmine and nodeunit tests', ['webpack:global', 'nodeunit', 'karma:single']); + grunt.registerTask('build', 'Run webpack and bundle the source', ['webpack']); + grunt.registerTask('publish', 'Prepare the code for release', ['clean', 'test', 'build', 'usebanner', 'update_json']); function generateWebpackConfig() { var webpack = require('webpack');