Skip to content

Commit

Permalink
chore: add "all-contributors-cli" and update contributors list
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Jan 2, 2019
1 parent 9dd8667 commit 59c487f
Show file tree
Hide file tree
Showing 4 changed files with 264 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"projectName": "react-butterfiles",
"projectOwner": "doitadrian",
"repoType": "github",
"repoHost": "https://github.com",
"files": [
"README.md"
],
"imageSize": 100,
"commit": false,
"contributors": [
{
"login": "doitadrian",
"name": "Adrian Smijulj",
"avatar_url": "https://avatars0.githubusercontent.com/u/5121148?v=4",
"profile": "https://github.com/doitadrian",
"contributions": [
"code",
"doc",
"example",
"review",
"test"
]
}
]
}
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 🦋 react-butterfiles
[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors)

<p align="center">
<a href="https://travis-ci.org/doitadrian/react-butterfiles.svg?branch=master">
Expand Down Expand Up @@ -107,3 +108,15 @@ Every error in the array will have one of the following error types.
| `multipleMaxCountExceeded` | User selected more files than allowed (more than `multipleMaxCount`).
| `multipleMaxSizeExceeded` | User selected one or more files with their total size greater than allowed (more than `multipleMaxSize`).
| `multipleNotAllowed` | This can only happen via drag and drop since file browser dialog won't let users select two or more files if `multiple` was not set to `true`.

## Contributors

Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore -->
| [<img src="https://avatars0.githubusercontent.com/u/5121148?v=4" width="100px;"/><br /><sub><b>Adrian Smijulj</b></sub>](https://github.com/doitadrian)<br />[💻](https://github.com/doitadrian/react-butterfiles/commits?author=doitadrian "Code") [📖](https://github.com/doitadrian/react-butterfiles/commits?author=doitadrian "Documentation") [💡](#example-doitadrian "Examples") [👀](#review-doitadrian "Reviewed Pull Requests") [⚠️](https://github.com/doitadrian/react-butterfiles/commits?author=doitadrian "Tests") |
| :---: |
<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!
221 changes: 221 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"@storybook/addon-links": "^4.1.2",
"@storybook/addons": "^4.1.2",
"@storybook/react": "^4.1.2",
"all-contributors-cli": "^5.6.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
Expand Down Expand Up @@ -76,7 +77,9 @@
"test:jest:dist": "npm run build && jest --config ./scripts/jest/config.dist.js --colors",
"test:cypress": "concurrently 'npm run storybook' 'wait-on http://localhost:6006 && npx cypress run' -k -s first",
"release": "npx semantic-release",
"lint-staged": "lint-staged"
"lint-staged": "lint-staged",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"pre-commit": [
"lint-staged"
Expand Down

0 comments on commit 59c487f

Please sign in to comment.