Add back grunt-contrib-compress.

Should automate the release process.

[ci skip]
This commit is contained in:
XhmikosR 2015-11-16 18:05:29 +02:00
parent 78eafb8d06
commit 713e53f105
1 changed files with 20 additions and 0 deletions

View File

@ -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'
}
]
}
}
});