diff --git a/Gruntfile.js b/Gruntfile.js index e0128d3e29..2d70e7c5a9 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -431,7 +431,27 @@ module.exports = function (grunt) { branch: 'gh-pages' } } + }, + + compress: { + main: { + options: { + archive: 'bootstrap-<%= pkg.version %>-dist.zip', + mode: 'zip', + level: 9, + pretty: true + }, + files: [ + { + expand: true, + cwd: 'dist/', + src: ['**'], + dest: 'bootstrap-<%= pkg.version %>-dist' + } + ] + } } + });