Skip to content

Commit 23994aa

Browse files
authored
Merge pull request testing-library#32 from Gpx/contributors
Contributors
2 parents 2bf04b4 + e9d33f0 commit 23994aa

File tree

4 files changed

+215
-1
lines changed

4 files changed

+215
-1
lines changed

.all-contributorsrc

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"projectName": "user-event",
3+
"projectOwner": "Gpx",
4+
"repoType": "github",
5+
"repoHost": "https://github.com",
6+
"files": [
7+
"README.md"
8+
],
9+
"imageSize": 100,
10+
"commit": true,
11+
"contributors": [
12+
{
13+
"login": "Gpx",
14+
"name": "Giorgio Polvara",
15+
"avatar_url": "https://avatars0.githubusercontent.com/u/767959?v=4",
16+
"profile": "https://twitter.com/Gpx",
17+
"contributions": [
18+
"bug",
19+
"code",
20+
"doc",
21+
"ideas",
22+
"infra",
23+
"review",
24+
"test"
25+
]
26+
}
27+
]
28+
}

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
[![Build Status](https://travis-ci.org/Gpx/user-event.svg?branch=master)](https://travis-ci.org/Gpx/user-event)
1414
[![Maintainability](https://api.codeclimate.com/v1/badges/75f1ff4397e994c6004e/maintainability)](https://codeclimate.com/github/Gpx/user-event/maintainability)
1515
[![Test Coverage](https://api.codeclimate.com/v1/badges/75f1ff4397e994c6004e/test_coverage)](https://codeclimate.com/github/Gpx/user-event/test_coverage)
16+
[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors)
1617

1718
## The problem
1819

@@ -118,3 +119,19 @@ character at the time. `false` is the default value`.
118119
`options.delay` is the number of milliseconds that pass between to characters
119120
are typed. By default it's 0. You can use this option if your component has a
120121
different behavior for fast or slow users.
122+
123+
## Contributors
124+
125+
Thanks goes to these wonderful people
126+
([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
127+
128+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
129+
<!-- prettier-ignore -->
130+
| [<img src="https://avatars0.githubusercontent.com/u/767959?v=4" width="100px;"/><br /><sub><b>Giorgio Polvara</b></sub>](https://twitter.com/Gpx)<br />[🐛](https://github.com/Gpx/user-event/issues?q=author%3AGpx "Bug reports") [💻](https://github.com/Gpx/user-event/commits?author=Gpx "Code") [📖](https://github.com/Gpx/user-event/commits?author=Gpx "Documentation") [🤔](#ideas-Gpx "Ideas, Planning, & Feedback") [🚇](#infra-Gpx "Infrastructure (Hosting, Build-Tools, etc)") [👀](#review-Gpx "Reviewed Pull Requests") [⚠️](https://github.com/Gpx/user-event/commits?author=Gpx "Tests") |
131+
| :---: |
132+
133+
<!-- ALL-CONTRIBUTORS-LIST:END -->
134+
135+
This project follows the
136+
[all-contributors](https://github.com/kentcdodds/all-contributors)
137+
specification. Contributions of any kind welcome!

package-lock.json

Lines changed: 166 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
"build": "babel src -d dist",
1717
"semantic-release": "semantic-release",
1818
"travis-deploy-once": "travis-deploy-once",
19-
"cm": "npx git-cz"
19+
"cm": "npx git-cz",
20+
"contributors:add": "all-contributors add",
21+
"contributors:generate": "all-contributors generate"
2022
},
2123
"repository": {
2224
"type": "git",
@@ -29,6 +31,7 @@
2931
},
3032
"homepage": "https://github.com/Gpx/user-event#readme",
3133
"devDependencies": {
34+
"all-contributors-cli": "5.4.1",
3235
"babel-cli": "6.26.0",
3336
"babel-core": "6.26.3",
3437
"babel-jest": "23.6.0",

0 commit comments

Comments
 (0)