Skip to content

Commit

Permalink
feat(demo): contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastrajan committed Jul 25, 2019
1 parent 4595caa commit 51a33e3
Show file tree
Hide file tree
Showing 7 changed files with 389 additions and 3 deletions.
38 changes: 38 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"projectName": "elements",
"projectOwner": "angular-extensions",
"repoType": "github",
"repoHost": "https://github.com",
"files": [
"README.md"
],
"imageSize": 100,
"commit": false,
"contributors": [
{
"login": "tomastrajan",
"name": "Tomas Trajan",
"avatar_url": "https://avatars0.githubusercontent.com/u/3764868?v=4",
"profile": "https://medium.com/@tomastrajan",
"contributions": [
"code",
"design",
"example",
"doc",
"ideas",
"infra",
"test"
]
},
{
"login": "wmaurer",
"name": "Wayne Maurer",
"avatar_url": "https://avatars2.githubusercontent.com/u/2899448?v=4",
"profile": "http://www.lambda-it.ch",
"contributions": [
"bug",
"code"
]
}
]
}
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,10 @@ with the corresponding major version (`"@angular/core"": "^8.0.0"` with `"@angul

Please, feel free to open an [issue](https://github.com/angular-extensions/elements/issues)
or submit a [pull request](https://github.com/angular-extensions/elements/pulls) to make this project better for everyone! 🤗

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore -->
| [<img src="https://avatars0.githubusercontent.com/u/3764868?v=4" width="100px;"/><br /><sub><b>Tomas Trajan</b></sub>](https://medium.com/@tomastrajan)<br />[💻](https://github.com/angular-extensions/elements/commits?author=tomastrajan "Code") [🎨](#design-tomastrajan "Design") [💡](#example-tomastrajan "Examples") [📖](https://github.com/angular-extensions/elements/commits?author=tomastrajan "Documentation") [🤔](#ideas-tomastrajan "Ideas, Planning, & Feedback") [🚇](#infra-tomastrajan "Infrastructure (Hosting, Build-Tools, etc)") [⚠️](https://github.com/angular-extensions/elements/commits?author=tomastrajan "Tests") | [<img src="https://avatars2.githubusercontent.com/u/2899448?v=4" width="100px;"/><br /><sub><b>Wayne Maurer</b></sub>](http://www.lambda-it.ch)<br />[🐛](https://github.com/angular-extensions/elements/issues?q=author%3Awmaurer "Bug reports") [💻](https://github.com/angular-extensions/elements/commits?author=wmaurer "Code") |
| :---: | :---: |

<!-- ALL-CONTRIBUTORS-LIST:END -->
265 changes: 265 additions & 0 deletions package-lock.json

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

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
"ci": "npm run test && npm run build && cpx README.md dist/elements",
"format:write": "prettier projects/**/*.{ts,json,md} --write",
"format:test": "prettier projects/**/*.{ts,json,md} --list-different",
"release": "standard-version -a && git push --follow-tags origin master"
"release": "standard-version -a && git push --follow-tags origin master",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate && node sync-contributors.js",
"contributors:check": "all-contributors check"
},
"standard-version": {
"scripts": {
Expand Down Expand Up @@ -59,6 +62,7 @@
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"all-contributors-cli": "~5.4.1",
"codelyzer": "^5.0.0",
"cpx": "^1.5.0",
"husky": "^2.4.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,25 @@ <h3>Missing a feature, found bug or typo in docs?</h3>
<br />
<br />

<h2>List of contributors</h2>
<p>Coming soon!</p>
<h2>
List of
<a
href="https://github.com/angular-extensions/elements/graphs/contributors"
target="_blank"
>contributors</a
>
</h2>

<div class="contributors">
<!-- ALL-CONTRIBUTORS-LIST:START -->
<a class="contributor" href="https://medium.com/@tomastrajan" target="_blank">
<img src="https://avatars0.githubusercontent.com/u/3764868?v=4" />
<span>Tomas Trajan</span>
</a>

<a class="contributor" href="http://www.lambda-it.ch" target="_blank">
<img src="https://avatars2.githubusercontent.com/u/2899448?v=4" />
<span>Wayne Maurer</span>
</a>
<!-- ALL-CONTRIBUTORS-LIST:END -->
</div>

0 comments on commit 51a33e3

Please sign in to comment.