8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f46d45 commit 459f668Copy full SH 8000 A for 459f668
tools/generate-contributors.ts
@@ -3,8 +3,8 @@
3
// this endpoint returns a list of contributors sorted by number of contributions
4
5
import * as fs from 'fs';
6
-import * as path from 'path';
7
import 'isomorphic-fetch';
+import * as path from 'path';
8
9
const IGNORED_USERS = new Set([
10
'eslint[bot]',
@@ -73,7 +73,7 @@ async function main(): Promise<void> {
73
const users = await Promise.all(
74
githubContributors.map<Promise<User>>(async c => {
75
const response = await fetch(c.url, { method: 'GET' });
76
- return await response.json();
+ return response.json();
77
}),
78
);
79
0 commit comments