From 271f827197633e7d4b688c20a6c78c31fb39a8ea Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Mon, 7 Mar 2016 13:01:54 -0800 Subject: [PATCH 1/2] tweak CONTRIBUTING.md --- CONTRIBUTING.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ea26b44b..6eeafcb8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ Contributions welcome! Please search issues and pull requests before adding something new to avoid duplicating efforts and conversations. -In addition to improving the project by refactoring code and implementing relevant features, this project welcomes the following types of contributions: +This project welcomes non-code contributions, too! The following types of contributions are welcome: - **Ideas**: participate in an issue thread or start your own to have your voice heard. - **Writing**: contribute your expertise in an area by helping expand the included content. @@ -17,19 +17,15 @@ In addition to improving the project by refactoring code and implementing releva [![standard][standard-image]][standard-url] -This repository uses [`standard`][standard-url] to maintain code style and consistency, and to avoid style arguments. `npm test` runs `standard` so you don't have to! +This repository uses [`standard`][standard-url] to maintain code style and consistency, and to avoid style arguments. `npm test` runs `standard` automatically, so you don't have to! [standard-image]: https://cdn.rawgit.com/feross/standard/master/badge.svg [standard-url]: https://github.com/feross/standard ---- - -# Collaborating Guidelines +# Project Governance **This is an [OPEN Open Source Project](http://openopensource.org/).** -## What? - Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project. ## Rules From fdb228f937a69123e0fadd64619c41eea6d4d4b3 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Mon, 7 Mar 2016 13:16:12 -0800 Subject: [PATCH 2/2] add AUTHORS.md --- AUTHORS.md | 12 ++++++++++++ tools/authors.sh | 19 +++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 AUTHORS.md create mode 100755 tools/authors.sh diff --git a/AUTHORS.md b/AUTHORS.md new file mode 100644 index 00000000..af243aa5 --- /dev/null +++ b/AUTHORS.md @@ -0,0 +1,12 @@ +# Authors + +#### Ordered by first contribution. + +- Feross Aboukhadijeh +- DC +- Nate Goldman +- Chris Morris +- Giuseppe Crinò + +#### Generated by tools/authors.sh. + diff --git a/tools/authors.sh b/tools/authors.sh new file mode 100755 index 00000000..b76427e4 --- /dev/null +++ b/tools/authors.sh @@ -0,0 +1,19 @@ +#!/bin/sh +# Update AUTHORS.md based on git history. + +git log --reverse --format='%aN <%aE>' | perl -we ' +BEGIN { + %seen = (), @authors = (); +} +while (<>) { + next if $seen{$_}; + next if //; + $seen{$_} = push @authors, "- ", $_; +} +END { + print "# Authors\n\n"; + print "#### Ordered by first contribution.\n\n"; + print @authors, "\n"; + print "#### Generated by tools/authors.sh.\n\n"; +} +' > AUTHORS.md