From 551215404dc93df3e3b387681be705714582de97 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Fri, 19 Apr 2013 01:01:15 -0400 Subject: [PATCH] Use maximum compression when creating packages grunt-contrib-compress defaults to minimum compression. --- Gruntfile.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 8746c0b6..25fcc3c3 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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/**" ] }