2016-02-29 00:48:55 +00:00
# all-contributors-cli
2017-01-26 21:12:06 +00:00
[![version ](https://img.shields.io/npm/v/all-contributors-cli.svg )](http://npm.im/all-contributors-cli)
2017-11-10 08:58:54 +00:00
[![All Contributors ](https://img.shields.io/badge/all_contributors-18-orange.svg?style=flat-square )](#contributors)
2016-03-06 09:40:19 +00:00
2016-02-29 00:48:55 +00:00
This is a tool to help automate adding contributor acknowledgements according to the [all-contributors ](https://github.com/kentcdodds/all-contributors ) specification.
2016-02-29 23:55:25 +00:00
## Installation
You can install it via `npm` :
2016-03-06 16:15:16 +00:00
```console
2016-03-21 23:09:12 +00:00
npm install all-contributors-cli -g
```
2017-01-26 21:12:06 +00:00
Then init the project using `init` and answer a few questions:
2016-03-21 23:09:12 +00:00
```console
all-contributors init
```
2016-03-22 18:53:10 +00:00
Once initialized, you don't need to have `all-contributors-cli` installed globally. You can instead save it as a devDependency of your project and add it to your `package.json` scripts:
2016-03-21 23:09:12 +00:00
```console
npm install --save-dev all-contributors-cli
2016-02-29 23:55:25 +00:00
```
2017-11-08 22:09:22 +00:00
2016-02-29 10:45:19 +00:00
```json
{
2016-03-21 23:09:12 +00:00
"scripts": {
2017-11-08 22:09:22 +00:00
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
2016-03-21 23:09:12 +00:00
}
2016-02-29 08:21:34 +00:00
}
```
2016-03-21 23:09:12 +00:00
and use them via `npm run` :
```console
2017-11-08 22:09:22 +00:00
npm run contributors:add -- jfmengels doc
npm run contributors:generate
2016-03-06 09:40:19 +00:00
```
2016-02-29 22:50:30 +00:00
2016-03-02 22:50:50 +00:00
## Usage
### Generating the contributors list
Use `generate` to generate the contributors list and inject it into your contributors file. Contributors will be read from your configuration file.
2016-03-20 19:19:19 +00:00
```console
2016-03-02 22:50:50 +00:00
all-contributors generate
```
2016-03-21 23:09:12 +00:00
### Add/update contributors
2016-03-02 22:50:50 +00:00
2017-01-26 21:12:06 +00:00
Use `add` to add new contributors to your project, or add new ways in which they have contributed. They will be added to your configuration file, and the contributors file will be updated just as if you used the `generate` command.
2016-03-02 22:50:50 +00:00
2016-03-06 16:15:16 +00:00
```console
2016-03-02 22:50:50 +00:00
# Add new contributor <username>, who made a contribution of type <contribution>
all-contributors add < username > < contribution >
# Example:
all-contributors add jfmengels code,doc
```
2016-03-21 23:09:12 +00:00
Where `username` is the user's GitHub username, and `contribution` is a `,` -separated list of ways to contribute, from the following list ([see the specs](https://github.com/kentcdodds/all-contributors#emoji-key)):
2017-09-25 20:05:48 +00:00
- blog: [📝 ](# "Blogposts" )
- bug: [🐛 ](# "Bug reports" )
2017-04-15 14:40:06 +00:00
- code: [💻 ](# "Code" )
2017-09-25 20:05:48 +00:00
- design: [🎨 ](# "Design" )
2017-04-15 14:40:06 +00:00
- doc: [📖 ](# "Documentation" )
2017-09-25 20:05:48 +00:00
- eventOrganizing: [📋 ](# "Event Organizing" )
2017-04-15 14:40:06 +00:00
- example: [💡 ](# "Examples" )
- financial: [💵 ](# "Financial" )
- fundingFinding: [🔍 ](# "Funding Finding" )
2017-08-03 16:36:29 +00:00
- ideas: [🤔 ](# "Ideas, Planning, & Feedback" )
2017-09-25 20:05:48 +00:00
- infra: [🚇 ](# "Infrastructure (Hosting, Build-Tools, etc )")
- plugin: [🔌 ](# "Plugin/utility libraries" )
- question: [💬 ](# "Answering Questions" )
- review: [👀 ](# "Reviewed Pull Requests" )
- talk: [📢 ](# "Talks" )
- test: [⚠️ ](# "Tests" )
- tool: [🔧 ](# "Tools" )
- translation: [🌍 ](# "Translation" )
- tutorial: [✅ ](# "Tutorials" )
- video: [📹 ](# "Videos" )
2016-03-02 22:50:50 +00:00
2017-11-08 17:09:20 +00:00
### Check for missing contributors
Use `check` to compare contributors from GitHub with the ones credited in your `.all-contributorsrc` file, in order to make sure that credit is given where it's due.
```console
all-contributors check
```
> Due to GitHub API restrictions, this command only works for projects with less than 500 contributors.
2016-03-21 23:09:12 +00:00
## Configuration
2017-01-26 21:12:06 +00:00
You can configure the project by updating the `.all-contributorsrc` JSON file. The data used to generate the contributors list will be stored in there, and you can configure how you want `all-contributors-cli` to generate the list.
2016-03-21 23:09:12 +00:00
These are the keys you can specify:
- `files` : Array of files to update. Default: `['README.md']`
2017-01-26 21:12:06 +00:00
- `projectOwner` : Name of the user the project is hosted by. Example: `jfmengels/all-contributors-cli` --> `jfmengels` . Mandatory.
- `projectName` : Name of the project. Example: `jfmengels/all-contributors-cli` --> `all-contributors-cli` . Mandatory.
2016-03-21 23:09:12 +00:00
- `types` : Specify custom symbols or link templates for contribution types. Can override the documented types.
- `imageSize` : Size (in px) of the user's avatar. Default: `100` .
- `contributorsPerLine` : Maximum number of columns for the contributors table. Default: `7` .
- `contributorTemplate` : Define your own template to generate the contributor list.
- `badgeTemplate` : Define your own template to generate the badge.
2016-02-29 22:50:30 +00:00
## Contributors
Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
2016-03-06 15:49:46 +00:00
<!-- ALL - CONTRIBUTORS - LIST:START - Do not remove or modify this section -->
2017-11-03 18:57:56 +00:00
| [<img src="https://avatars.githubusercontent.com/u/3869412?v=3" width="100px;"/><br /><sub><b>Jeroen Engels</b></sub> ](https://github.com/jfmengels )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=jfmengels "Code") [📖 ](https://github.com/jfmengels/all-contributors-cli/commits?author=jfmengels "Documentation" ) [⚠️ ](https://github.com/jfmengels/all-contributors-cli/commits?author=jfmengels "Tests" ) | [<img src="https://avatars.githubusercontent.com/u/1500684?v=3" width="100px;"/><br /><sub><b>Kent C. Dodds</b></sub> ](http://kentcdodds.com/ )< br /> [📖](https://github.com/jfmengels/all-contributors-cli/commits?author=kentcdodds "Documentation") [💻 ](https://github.com/jfmengels/all-contributors-cli/commits?author=kentcdodds "Code" ) | [<img src="https://avatars.githubusercontent.com/u/14871650?v=3" width="100px;"/><br /><sub><b>João Guimarães</b></sub> ](https://github.com/jccguimaraes )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=jccguimaraes "Code") | [<img src="https://avatars.githubusercontent.com/u/1282980?v=3" width="100px;"/><br /><sub><b>Ben Briggs</b></sub> ](http://beneb.info )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=ben-eb "Code") | [<img src="https://avatars.githubusercontent.com/u/22768990?v=3" width="100px;"/><br /><sub><b>Itai Steinherz</b></sub> ](https://github.com/itaisteinherz )< br /> [📖](https://github.com/jfmengels/all-contributors-cli/commits?author=itaisteinherz "Documentation") [💻 ](https://github.com/jfmengels/all-contributors-cli/commits?author=itaisteinherz "Code" ) | [<img src="https://avatars.githubusercontent.com/u/5701162?v=3" width="100px;"/><br /><sub><b>Alex Jover</b></sub> ](https://github.com/alexjoverm )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=alexjoverm "Code") [📖 ](https://github.com/jfmengels/all-contributors-cli/commits?author=alexjoverm "Documentation" ) | [<img src="https://avatars3.githubusercontent.com/u/8212?v=3" width="100px;"/><br /><sub><b>Jerod Santo</b></sub> ](https://jerodsanto.net )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=jerodsanto "Code") |
2017-04-15 13:10:59 +00:00
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
2017-11-08 18:13:25 +00:00
| [<img src="https://avatars1.githubusercontent.com/u/574871?v=3" width="100px;"/><br /><sub><b>Kevin Jalbert</b></sub> ](https://github.com/kevinjalbert )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=kevinjalbert "Code") | [<img src="https://avatars3.githubusercontent.com/u/5038030?v=4" width="100px;"/><br /><sub><b>tunnckoCore</b></sub> ](https://i.am.charlike.online )< br /> [🔧](#tool-charlike "Tools") | [<img src="https://avatars2.githubusercontent.com/u/304450?v=4" width="100px;"/><br /><sub><b>Mehdi Achour</b></sub> ](https://machour.idk.tn/ )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=machour "Code") | [<img src="https://avatars1.githubusercontent.com/u/8344688?v=4" width="100px;"/><br /><sub><b>Roy Revelt</b></sub> ](https://codsen.com )< br /> [🐛](https://github.com/jfmengels/all-contributors-cli/issues?q=author%3Arevelt "Bug reports") | [<img src="https://avatars1.githubusercontent.com/u/422331?v=4" width="100px;"/><br /><sub><b>Chris Vickery</b></sub> ](https://github.com/chrisinajar )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=chrisinajar "Code") | [<img src="https://avatars2.githubusercontent.com/u/1026002?v=4" width="100px;"/><br /><sub><b>Bryce Reynolds</b></sub> ](https://github.com/brycereynolds )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=brycereynolds "Code") | [<img src="https://avatars3.githubusercontent.com/u/2322305?v=4" width="100px;"/><br /><sub><b>James, please</b></sub> ](http://www.jmeas.com )< br /> [🤔](#ideas-jmeas "Ideas, Planning, & Feedback") [💻 ](https://github.com/jfmengels/all-contributors-cli/commits?author=jmeas "Code" ) |
2017-11-10 08:58:54 +00:00
| [<img src="https://avatars3.githubusercontent.com/u/1057324?v=4" width="100px;"/><br /><sub><b>Spyros Ioakeimidis</b></sub> ](http://www.spyros.io )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=spirosikmd "Code") | [<img src="https://avatars3.githubusercontent.com/u/12335761?v=4" width="100px;"/><br /><sub><b>Fernando Costa</b></sub> ](https://github.com/fadc80 )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=fadc80 "Code") | [<img src="https://avatars0.githubusercontent.com/u/197404?v=4" width="100px;"/><br /><sub><b>snipe</b></sub> ](https://snipe.net )< br /> [📖](https://github.com/jfmengels/all-contributors-cli/commits?author=snipe "Documentation") | [<img src="https://avatars0.githubusercontent.com/u/997157?v=4" width="100px;"/><br /><sub><b>Gant Laborde</b></sub> ](http://gantlaborde.com/ )< br /> [💻](https://github.com/jfmengels/all-contributors-cli/commits?author=GantMan "Code") |
2016-03-06 15:49:46 +00:00
<!-- ALL - CONTRIBUTORS - LIST:END -->
2016-02-29 22:50:30 +00:00
This project follows the [all-contributors ](https://github.com/kentcdodds/all-contributors ) specification.
2017-01-26 21:12:06 +00:00
Contributions of any kind are welcome!
2016-02-29 22:50:30 +00:00
## LICENSE
MIT