From 0127dd9e6cc9acacf9c274390cd9c2dca67a3e5b Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Thu, 25 Sep 2014 10:53:20 +0100 Subject: [PATCH] Adding size param to contrib images no issue - reduces filesize significantly, whilst not impacting quality --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index da9ff30ba4..9b0c6aa4da 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -988,7 +988,7 @@ var _ = require('lodash'), }); }; return Promise.all(_.map(contributors, function (contributor) { - return downloadImagePromise(contributor.avatarUrl, contributor.name); + return downloadImagePromise(contributor.avatarUrl + '&s=60', contributor.name); })); }).catch(function (error) { grunt.log.error(error);