Skip to content

Commit 51a33e3

Browse files
committed
feat(demo): contributors
1 parent 4595caa commit 51a33e3

File tree

7 files changed

+389
-3
lines changed

7 files changed

+389
-3
lines changed

.all-contributorsrc

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"projectName": "elements",
3+
"projectOwner": "angular-extensions",
4+
"repoType": "github",
5+
"repoHost": "https://github.com",
6+
"files": [
7+
"README.md"
8+
],
9+
"imageSize": 100,
10+
"commit": false,
11+
"contributors": [
12+
{
13+
"login": "tomastrajan",
14+
"name": "Tomas Trajan",
15+
"avatar_url": "https://avatars0.githubusercontent.com/u/3764868?v=4",
16+
"profile": "https://medium.com/@tomastrajan",
17+
"contributions": [
18+
"code",
19+
"design",
20+
"example",
21+
"doc",
22+
"ideas",
23+
"infra",
24+
"test"
25+
]
26+
},
27+
{
28+
"login": "wmaurer",
29+
"name": "Wayne Maurer",
30+
"avatar_url": "https://avatars2.githubusercontent.com/u/2899448?v=4",
31+
"profile": "http://www.lambda-it.ch",
32+
"contributions": [
33+
"bug",
34+
"code"
35+
]
36+
}
37+
]
38+
}

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,10 @@ with the corresponding major version (`"@angular/core"": "^8.0.0"` with `"@angul
7373

7474
Please, feel free to open an [issue](https://github.com/angular-extensions/elements/issues)
7575
or submit a [pull request](https://github.com/angular-extensions/elements/pulls) to make this project better for everyone! 🤗
76+
77+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
78+
<!-- prettier-ignore -->
79+
| [<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") |
80+
| :---: | :---: |
81+
82+
<!-- ALL-CONTRIBUTORS-LIST:END -->

package-lock.json

Lines changed: 265 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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212
"ci": "npm run test && npm run build && cpx README.md dist/elements",
1313
"format:write": "prettier projects/**/*.{ts,json,md} --write",
1414
"format:test": "prettier projects/**/*.{ts,json,md} --list-different",
15-
"release": "standard-version -a && git push --follow-tags origin master"
15+
"release": "standard-version -a && git push --follow-tags origin master",
16+
"contributors:add": "all-contributors add",
17+
"contributors:generate": "all-contributors generate && node sync-contributors.js",
18+
"contributors:check": "all-contributors check"
1619
},
1720
"standard-version": {
1821
"scripts": {
@@ -59,6 +62,7 @@
5962
"@types/jasmine": "~3.3.8",
6063
"@types/jasminewd2": "~2.0.3",
6164
"@types/node": "~8.9.4",
65+
"all-contributors-cli": "~5.4.1",
6266
"codelyzer": "^5.0.0",
6367
"cpx": "^1.5.0",
6468
"husky": "^2.4.1",

projects/elements-demo/src/app/features/contribute/contribute/contribute.component.html

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,25 @@ <h3>Missing a feature, found bug or typo in docs?</h3>
3030
<br />
3131
<br />
3232

33-
<h2>List of contributors</h2>
34-
<p>Coming soon!</p>
33+
<h2>
34+
List of
35+
<a
36+
href="https://github.com/angular-extensions/elements/graphs/contributors"
37+
target="_blank"
38+
>contributors</a
39+
>
40+
</h2>
41+
42+
<div class="contributors">
43+
<!-- ALL-CONTRIBUTORS-LIST:START -->
44+
<a class="contributor" href="https://medium.com/@tomastrajan" target="_blank">
45+
<img src="https://avatars0.githubusercontent.com/u/3764868?v=4" />
46+
<span>Tomas Trajan</span>
47+
</a>
48+
49+
<a class="contributor" href="http://www.lambda-it.ch" target="_blank">
50+
<img src="https://avatars2.githubusercontent.com/u/2899448?v=4" />
51+
<span>Wayne Maurer</span>
52+
</a>
53+
<!-- ALL-CONTRIBUTORS-LIST:END -->
54+
</div>

0 commit comments

Comments
 (0)