-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4603 from mermaid-js/sidv/optimiseDocs
Avoid downloading avtars everytime on docs:dev
- Loading branch information
Showing
7 changed files
with
138 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
export interface Contributor { | ||
name: string; | ||
avatar: string; | ||
} | ||
|
||
export interface SocialEntry { | ||
icon: string | { svg: string }; | ||
link: string; | ||
} | ||
|
||
export interface CoreTeam { | ||
name: string; | ||
// required to download avatars from GitHub | ||
github: string; | ||
avatar?: string; | ||
twitter?: string; | ||
mastodon?: string; | ||
sponsor?: string; | ||
website?: string; | ||
linkedIn?: string; | ||
title?: string; | ||
org?: string; | ||
desc?: string; | ||
links?: SocialEntry[]; | ||
} | ||
|
||
export const knut: CoreTeam = { | ||
github: 'knsv', | ||
name: 'Knut Sveidqvist', | ||
title: 'Creator', | ||
twitter: 'knutsveidqvist', | ||
sponsor: 'https://github.com/sponsors/knsv', | ||
}; | ||
|
||
export const plainTeamMembers: CoreTeam[] = [ | ||
{ | ||
github: 'NeilCuzon', | ||
name: 'Neil Cuzon', | ||
}, | ||
{ | ||
github: 'tylerlong', | ||
name: 'Tyler Liu', | ||
}, | ||
{ | ||
github: 'sidharthv96', | ||
name: 'Sidharth Vinod', | ||
twitter: 'sidv42', | ||
mastodon: 'https://techhub.social/@sidv', | ||
sponsor: 'https://github.com/sponsors/sidharthv96', | ||
linkedIn: 'sidharth-vinod', | ||
website: 'https://sidharth.dev', | ||
}, | ||
{ | ||
github: 'ashishjain0512', | ||
name: 'Ashish Jain', | ||
}, | ||
{ | ||
github: 'mmorel-35', | ||
name: 'Matthieu Morel', | ||
linkedIn: 'matthieumorel35', | ||
}, | ||
{ | ||
github: 'aloisklink', | ||
name: 'Alois Klink', | ||
linkedIn: 'aloisklink', | ||
website: 'https://aloisklink.com', | ||
}, | ||
{ | ||
github: 'pbrolin47', | ||
name: 'Per Brolin', | ||
}, | ||
{ | ||
github: 'Yash-Singh1', | ||
name: 'Yash Singh', | ||
}, | ||
{ | ||
github: 'GDFaber', | ||
name: 'Marc Faber', | ||
linkedIn: 'marc-faber', | ||
}, | ||
{ | ||
github: 'MindaugasLaganeckas', | ||
name: 'Mindaugas Laganeckas', | ||
}, | ||
{ | ||
github: 'jgreywolf', | ||
name: 'Justin Greywolf', | ||
}, | ||
{ | ||
github: 'IOrlandoni', | ||
name: 'Nacho Orlandoni', | ||
}, | ||
{ | ||
github: 'huynhicode', | ||
name: 'Steph Huynh', | ||
}, | ||
{ | ||
github: 'Yokozuna59', | ||
name: 'Reda Al Sulais', | ||
}, | ||
{ | ||
github: 'nirname', | ||
name: 'Nikolay Rozhkov', | ||
}, | ||
]; |