aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index afa090c3d..fb8b1e8b0 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -7,6 +7,7 @@ module.exports = function( grunt ) {
"dist/jquery.min.map",
"dist/jquery.min.js"
],
+ gzip = require("gzip-js"),
readOptionalJSON = function( filepath ) {
var data = {};
try {
@@ -19,7 +20,15 @@ module.exports = function( grunt ) {
pkg: grunt.file.readJSON("package.json"),
dst: readOptionalJSON("dist/.destination.json"),
compare_size: {
- files: distpaths
+ files: [ "dist/jquery.js", "dist/jquery.min.js" ],
+ options: {
+ compress: {
+ gz: function( contents ) {
+ return gzip.zip( contents, {} ).length;
+ }
+ },
+ cache: "dist/.sizecache.json"
+ }
},
selector: {
destFile: "src/selector-sizzle.js",