Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update-authors.sh « scripts - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9c9a665ab5dcc4ec1ee95ba0a4754eeac7ef295 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

git log --use-mailmap --reverse --format='%aN <%aE>' | grep -v -e "\[bot\]" -e "^npm team" -e "^npm CLI robot" | perl -wnE '
BEGIN {
  say "# Authors sorted by whether or not they\x27re me";
}

print $seen{$_} = $_ unless $seen{$_}
' > AUTHORS