Improve AUTHORS.md rendering
This commit is contained in:
49
AUTHORS.md
49
AUTHORS.md
@@ -2,29 +2,30 @@
|
|||||||
|
|
||||||
#### Ordered by first contribution.
|
#### Ordered by first contribution.
|
||||||
|
|
||||||
- Feross Aboukhadijeh <feross@feross.org>
|
- Feross Aboukhadijeh (feross@feross.org)
|
||||||
- DC <dcposch@dcpos.ch>
|
- DC (dcposch@dcpos.ch)
|
||||||
- Nate Goldman <nate@ngoldman.me>
|
- Nate Goldman (nate@ngoldman.me)
|
||||||
- Chris Morris <chris@chrismorris.org>
|
- Chris Morris (chris@chrismorris.org)
|
||||||
- Giuseppe Crinò <giuscri@gmail.com>
|
- Giuseppe Crinò (giuscri@gmail.com)
|
||||||
- Romain Beaumont <romain.rom1@gmail.com>
|
- Romain Beaumont (romain.rom1@gmail.com)
|
||||||
- Dan Flettre <fletd01@yahoo.com>
|
- Dan Flettre (fletd01@yahoo.com)
|
||||||
- Liam Gray <liam.r.gray@gmail.com>
|
- Liam Gray (liam.r.gray@gmail.com)
|
||||||
- grunjol <grunjol@users.noreply.github.com>
|
- grunjol (grunjol@users.noreply.github.com)
|
||||||
- Rémi Jouannet <remijouannet@users.noreply.github.com>
|
- Rémi Jouannet (remijouannet@users.noreply.github.com)
|
||||||
- Evan Miller <miller.evan815@gmail.com>
|
- Evan Miller (miller.evan815@gmail.com)
|
||||||
- Alex <alxmorais8@msn.com>
|
- Alex (alxmorais8@msn.com)
|
||||||
- Diego Rodríguez Baquero <diegorbaquero@gmail.com>
|
- Diego Rodríguez Baquero (diegorbaquero@gmail.com)
|
||||||
- Karlo Luis Martinez Martos <karlo.luis.m@gmail.com>
|
- Karlo Luis Martinez Martos (karlo.luis.m@gmail.com)
|
||||||
- gabriel <furstenheim@gmail.com>
|
- gabriel (furstenheim@gmail.com)
|
||||||
- Rolando Guedes <rolando.guedes@3gnt.net>
|
- Rolando Guedes (rolando.guedes@3gnt.net)
|
||||||
- Benjamin Tan <demoneaux@gmail.com>
|
- Benjamin Tan (demoneaux@gmail.com)
|
||||||
- Mathias Rasmussen <mathiasvr@gmail.com>
|
- Mathias Rasmussen (mathiasvr@gmail.com)
|
||||||
- Sergey Bargamon <sergey@bargamon.ru>
|
- Sergey Bargamon (sergey@bargamon.ru)
|
||||||
- Thomas Watson Steen <w@tson.dk>
|
- Thomas Watson Steen (w@tson.dk)
|
||||||
- anonymlol <anonymlol7@gmail.com>
|
- anonymlol (anonymlol7@gmail.com)
|
||||||
- Gediminas Petrikas <gedas18@gmail.com>
|
- Gediminas Petrikas (gedas18@gmail.com)
|
||||||
- Adam Gotlib <gotlib.adam+dev@gmail.com>
|
- Adam Gotlib (gotlib.adam+dev@gmail.com)
|
||||||
- Rémi Jouannet <remijouannet@gmail.com>
|
- Rémi Jouannet (remijouannet@gmail.com)
|
||||||
|
- Andrea Tupini (tupini07@gmail.com)
|
||||||
|
|
||||||
#### Generated by bin/update-authors.sh.
|
#### Generated by bin/update-authors.sh.
|
||||||
|
|||||||
@@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
# Update AUTHORS.md based on git history.
|
# Update AUTHORS.md based on git history.
|
||||||
|
|
||||||
git log --reverse --format='%aN <%aE>' | perl -we '
|
git log --reverse --format='%aN (%aE)' | perl -we '
|
||||||
BEGIN {
|
BEGIN {
|
||||||
%seen = (), @authors = ();
|
%seen = (), @authors = ();
|
||||||
}
|
}
|
||||||
while (<>) {
|
while (<>) {
|
||||||
next if $seen{$_};
|
next if $seen{$_};
|
||||||
next if /<support\@greenkeeper.io>/;
|
next if /(support\@greenkeeper.io)/;
|
||||||
next if /<ungoldman\@gmail.com>/;
|
next if /(ungoldman\@gmail.com)/;
|
||||||
next if /<dc\@DCs-MacBook.local>/;
|
next if /(dc\@DCs-MacBook.local)/;
|
||||||
next if /<rolandoguedes\@gmail.com>/;
|
next if /(rolandoguedes\@gmail.com)/;
|
||||||
$seen{$_} = push @authors, "- ", $_;
|
$seen{$_} = push @authors, "- ", $_;
|
||||||
}
|
}
|
||||||
END {
|
END {
|
||||||
|
|||||||
Reference in New Issue
Block a user