Skip to content

Commit 8766f58

Browse files
authored
Merge pull request #73 from cyclejs-community/contributors
Contributors
2 parents 9d06a28 + 9af1853 commit 8766f58

File tree

4 files changed

+33
-0
lines changed

4 files changed

+33
-0
lines changed

AUTHORS.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Authors
2+
3+
#### Ordered by first contribution.
4+
5+
- Geovani de Souza (geovanisouza92@gmail.com)
6+
- Nick Johnstone (ncwjohnstone@gmail.com)
7+
- Nick Balestra (nick@balestra.ch)
8+
- Cesar Figueroa (cesar.figueroa@me.com)
9+
- Justin Zimmerman (jzimmerman@redventures.com)
10+
- Steve Lee (steve@opendirective.com)
11+
12+
#### Generated by bin/update-authors.sh.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ We'd love to have your help on `create-cycle-app`. See [CONTRIBUTING.md](CONTRIB
203203
## Acknowledgements
204204

205205
A simple thank you goes a long way. That's why we would like to thank the [create-react-app](https://github.com/facebookincubator/create-react-app) team: you have been a fantastic inspiration and a great example for this project.
206+
We would also like to thank the [standard project](https://github.com/feross/standard) for their update-authors script.
206207

207208
## Alternatives
208209

bin/update-authors.sh

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/sh
2+
# Update AUTHORS.md based on git history.
3+
4+
git log --reverse --format='%aN (%aE)' | perl -we '
5+
BEGIN {
6+
%seen = (), @authors = ();
7+
}
8+
while (<>) {
9+
next if $seen{$_};
10+
next if /(support\@greenkeeper.io)/;
11+
$seen{$_} = push @authors, "- ", $_;
12+
}
13+
END {
14+
print "# Authors\n\n";
15+
print "#### Ordered by first contribution.\n\n";
16+
print @authors, "\n";
17+
print "#### Generated by bin/update-authors.sh.\n";
18+
}
19+
' > AUTHORS.md

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "Create Cycle.js apps with zero configuration.",
55
"private": true,
66
"scripts": {
7+
"update-authors": "./bin/update-authors.sh",
78
"precommit": "standard && npm run test",
89
"postinstall": "lerna bootstrap",
910
"test": "lerna run test",

0 commit comments

Comments
 (0)