-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
62 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,6 @@ i2p-lbt <[email protected]> | |
Andrew Ettinger <[email protected]> | ||
Joshua Benuck <[email protected]> | ||
Eric Dobbs <[email protected]> | ||
Andrew Shell <[email protected]> | ||
Matthew B. Gray <[email protected]> | ||
decaffeinate <[email protected]> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,38 @@ | ||
const gitAuthors = require('grunt-git-authors') | ||
|
||
// list of contributers from prior the split out of Smallest Federated Wiki repo. | ||
const priorAuthors = [ | ||
"Ward Cunningham <[email protected]>", | ||
"Stephen Judkins <[email protected]>", | ||
"Sam Goldstein <[email protected]>", | ||
"Steven Black <[email protected]>", | ||
"Don Park <[email protected]>", | ||
"Sven Dowideit <[email protected]>", | ||
"Adam Solove <[email protected]>", | ||
"Nick Niemeir <[email protected]>", | ||
"Erkan Yilmaz <[email protected]>", | ||
"Matt Niemeir <[email protected]>", | ||
"Daan van Berkel <[email protected]>", | ||
"Nicholas Hallahan <[email protected]>", | ||
"Ola Bini <[email protected]>", | ||
"Danilo Sato <[email protected]>", | ||
"Henning Schumann <[email protected]>", | ||
"Michael Deardeuff <[email protected]>", | ||
"Pete Hodgson <[email protected]>", | ||
"Marcin Cieslak <[email protected]>", | ||
"M. Kelley Harris (http://www.kelleyharris.com)", | ||
"Ryan Bennett <[email protected]>", | ||
"Paul Rodwell <[email protected]>", | ||
"David Turnbull <[email protected]>", | ||
"Austin King <[email protected]>" | ||
] | ||
|
||
gitAuthors.updateAuthors({ | ||
priorAuthors: priorAuthors | ||
}, (error, filename) => { | ||
if (error) { | ||
console.log('Error: ', error) | ||
} else { | ||
console.log(filename, 'updated') | ||
} | ||
}) |