From: Dave Methvin Date: Sun, 23 Dec 2012 19:45:49 +0000 (-0500) Subject: Put .min.js file at the end so compare_size will work. X-Git-Tag: 1.9.0rc1~15 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4de4be42f6327c4f3d833191caf6ee9caa89c852;p=jquery.git Put .min.js file at the end so compare_size will work. --- diff --git a/Gruntfile.js b/Gruntfile.js index 8c9e76408..ea51d180a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -4,8 +4,8 @@ module.exports = function( grunt ) { var distpaths = [ "dist/jquery.js", - "dist/jquery.min.js", - "dist/jquery.min.map" + "dist/jquery.min.map", + "dist/jquery.min.js" ], readOptionalJSON = function( filepath ) { var data = {};