From 7b51efd39ec2fec0b336e5dd40d14bdced59dab5 Mon Sep 17 00:00:00 2001 From: greg5green Date: Tue, 5 May 2015 22:14:43 -0400 Subject: [PATCH] Add zip task to docs task so download is automatically created when deploying the site --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 283b46a4..2a314611 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -278,7 +278,7 @@ module.exports = function(grunt) { // tasks grunt.registerTask('dist', [ 'clean:dist', 'sass:dist', 'concat:dist', 'cssmin:dist', 'copy:themes', 'copy:distImages', 'jscs:dist', 'uglify:dist', 'copy:readme' ]); - grunt.registerTask('docs', [ 'dist', 'clean:docs', 'assemble', 'sass:docs', 'copy:docsAssets', 'copy:distToDocs' ]); + grunt.registerTask('docs', [ 'dist', 'clean:docs', 'assemble', 'sass:docs', 'copy:docsAssets', 'copy:distToDocs', 'zip' ]); grunt.registerTask('test', [ 'jshint:dist', 'qunit:dist' ]);