chore(grunt): ensure that grunt uses zip for compression

This commit is contained in:
Igor Minar 2013-08-13 15:14:42 -07:00
parent d8c010ac1e
commit 79a88ecfa6

View file

@ -216,7 +216,7 @@ module.exports = function(grunt) {
compress: {
build: {
options: {archive: 'build/' + dist +'.zip'},
options: {archive: 'build/' + dist +'.zip', mode: 'zip'},
src: ['**'], cwd: 'build', expand: true, dot: true, dest: dist + '/'
}
},