From d4bf80430c13f44a134cac43c684cbe0cef83d78 Mon Sep 17 00:00:00 2001 From: Matt Enlow Date: Wed, 24 Sep 2014 22:50:31 -0600 Subject: [PATCH] Update top-gh-contribs to get contributors within last 90 days Closes #4130 --- Gruntfile.js | 5 +++-- package.json | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 09a0ded38b..da9ff30ba4 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -945,7 +945,8 @@ var _ = require('lodash'), // `grunt buildAboutPage --force` grunt.registerTask('buildAboutPage', 'Compile assets for the About Ghost page', function () { var done = this.async(), - templatePath = 'core/client/templates/-contributors.hbs'; + templatePath = 'core/client/templates/-contributors.hbs', + ninetyDaysAgo = Date.now() - (1000 * 60 * 60 * 24 * 90); if (fs.existsSync(templatePath) && !grunt.option('force')) { grunt.log.writeln('Contributors template already exists.'); @@ -957,7 +958,7 @@ var _ = require('lodash'), getTopContribs({ user: 'tryghost', repo: 'ghost', - releaseTag: '0.4.2', + releaseDate: ninetyDaysAgo, count: 20 }).then(function makeContributorTemplate(contributors) { var contributorTemplate = '
  • \n\t\n' + diff --git a/package.json b/package.json index 67ffda5502..c2840c171b 100644 --- a/package.json +++ b/package.json @@ -98,6 +98,6 @@ "should": "~4.0.4", "sinon": "~1.10.3", "supertest": "~0.13.0", - "top-gh-contribs": "0.0.1" + "top-gh-contribs": "0.0.2" } }