From 83db8ecc431ab5112c8c751f1089366c08daf235 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 27 May 2021 12:07:42 -0700 Subject: [PATCH] Update site/scripts/get-contributors.js --- site/scripts/get-contributors.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/scripts/get-contributors.js b/site/scripts/get-contributors.js index 92c9082819..ff52652ffd 100644 --- a/site/scripts/get-contributors.js +++ b/site/scripts/get-contributors.js @@ -24,7 +24,7 @@ async function main() { } const authors = contributors - .filter(({ login }) => !login.includes('[bot]')) + .filter(({ login }) => !login.includes('[bot]')) .sort((a, b) => b.contributions - a.contributions); const sprite = new Jimp(SIZE * authors.length, SIZE); @@ -51,4 +51,4 @@ async function main() { fs.writeFileSync(`../src/routes/_contributors.js`, `export default ${str};`); } -main(); \ No newline at end of file +main();