mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
Use maximum compression when creating packages
grunt-contrib-compress defaults to minimum compression.
This commit is contained in:
parent
d7224f8206
commit
551215404d
@ -84,7 +84,8 @@ module.exports = function(grunt) {
|
||||
compress: {
|
||||
zip: {
|
||||
options: {
|
||||
archive: "build/openseadragon.zip"
|
||||
archive: "build/openseadragon.zip",
|
||||
level: 9
|
||||
},
|
||||
files: [
|
||||
{ expand: true, cwd: "build/", src: ["openseadragon/**"] }
|
||||
@ -92,7 +93,8 @@ module.exports = function(grunt) {
|
||||
},
|
||||
tar: {
|
||||
options: {
|
||||
archive: "build/openseadragon.tar.gz"
|
||||
archive: "build/openseadragon.tar.gz",
|
||||
level: 9
|
||||
},
|
||||
files: [
|
||||
{ expand: true, cwd: "build/", src: [ "openseadragon/**" ] }
|
||||
|
Loading…
Reference in New Issue
Block a user