diff options
Diffstat (limited to 'scripts/generate-code-contributors.ts')
-rwxr-xr-x | scripts/generate-code-contributors.ts | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/generate-code-contributors.ts b/scripts/generate-code-contributors.ts index 9824bc2f5..0d6266056 100755 --- a/scripts/generate-code-contributors.ts +++ b/scripts/generate-code-contributors.ts | |||
@@ -35,13 +35,17 @@ async function run () { | |||
35 | 35 | ||
36 | { | 36 | { |
37 | console.log('\n\n# Design\n') | 37 | console.log('\n\n# Design\n') |
38 | console.log('By [Olivier Massain](https://twitter.com/omassain)\n') | 38 | console.log(' * [Olivier Massain](https://twitter.com/omassain)') |
39 | console.log('Icons from [Robbie Pearce](https://robbiepearce.com/softies/)') | 39 | |
40 | console.log('\n\n# Icons\n') | ||
41 | console.log(' * [Robbie Pearce](https://robbiepearce.com/softies/)') | ||
42 | console.log(' * [Fork-Awesome](https://github.com/ForkAwesome/Fork-Awesome)') | ||
43 | console.log(' * playlist add by Google') | ||
40 | } | 44 | } |
41 | } | 45 | } |
42 | 46 | ||
43 | function get (url: string, headers: any = {}) { | 47 | function get (url: string, headers: any = {}) { |
44 | return doRequest({ | 48 | return doRequest<any>({ |
45 | uri: url, | 49 | uri: url, |
46 | json: true, | 50 | json: true, |
47 | headers: Object.assign(headers, { | 51 | headers: Object.assign(headers, { |