mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +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: {
|
compress: {
|
||||||
zip: {
|
zip: {
|
||||||
options: {
|
options: {
|
||||||
archive: "build/openseadragon.zip"
|
archive: "build/openseadragon.zip",
|
||||||
|
level: 9
|
||||||
},
|
},
|
||||||
files: [
|
files: [
|
||||||
{ expand: true, cwd: "build/", src: ["openseadragon/**"] }
|
{ expand: true, cwd: "build/", src: ["openseadragon/**"] }
|
||||||
@ -92,7 +93,8 @@ module.exports = function(grunt) {
|
|||||||
},
|
},
|
||||||
tar: {
|
tar: {
|
||||||
options: {
|
options: {
|
||||||
archive: "build/openseadragon.tar.gz"
|
archive: "build/openseadragon.tar.gz",
|
||||||
|
level: 9
|
||||||
},
|
},
|
||||||
files: [
|
files: [
|
||||||
{ expand: true, cwd: "build/", src: [ "openseadragon/**" ] }
|
{ expand: true, cwd: "build/", src: [ "openseadragon/**" ] }
|
||||||
|
Loading…
Reference in New Issue
Block a user