2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-15 11:59:42 +03:00

Adding descriptions to grunt tasks

This commit is contained in:
mzabriskie
2014-09-18 13:01:25 -06:00
parent d8f687dc52
commit 13fb3e80b0
+3 -3
View File
@@ -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');