Skip to content

Commit 5a6f2ce

Browse files
authored
docs: update README (#43)
* docs: update README * docs: replace github repo name
1 parent 7710728 commit 5a6f2ce

File tree

7 files changed

+15
-16
lines changed

7 files changed

+15
-16
lines changed

.github/CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Typescript-Tutorial-Exercises Contributing Guide
1+
# Type-Challenges-Site Contributing Guide
22

33
Hi! I'm really excited that you are interested in contributing to js-sdsl. Before submitting your contribution, please make sure to take a moment and read through the following guidelines:
44

5-
- [Code of Conduct](https://github.com/typescript-tutorial-exercises/core/blob/main/CODE_OF_CONDUCT.md)
5+
- [Code of Conduct](https://github.com/type-challenges/site/blob/main/CODE_OF_CONDUCT.md)
66
- [Issue Reporting Guidelines](#issue-reporting-guidelines)
77
- [Pull Request Guidelines](#pull-request-guidelines)
88
- [Development Setup](#development-setup)
@@ -44,7 +44,7 @@ $ yarn setup
4444

4545
### Committing Changes
4646

47-
Please follow the commit specification. See [`.commitlintrc.json`](https://github.com/typescript-tutorial-exercises/core/blob/main/.commitlintrc.json) get help.
47+
Please follow the commit specification. See [`.commitlintrc.json`](https://github.com/type-challenges/site/blob/main/.commitlintrc.json) get help.
4848

4949
### Commonly used NPM scripts
5050

@@ -68,6 +68,6 @@ All our source files are written in typescript, please make sure your submission
6868

6969
## Credits
7070

71-
Thank you to all the people who have already contributed to `typescript-tutorial-exercises`!
71+
Thank you to all the people who have already contributed to `type-challenges`!
7272

73-
[![contributors](https://contrib.rocks/image?repo=typescript-tutorial-exercises/core)](https://github.com/typescript-tutorial-exercises/core/graphs/contributors)
73+
[![contributors](https://contrib.rocks/image?repo=type-challenges/site)](https://github.com/type-challenges/site/graphs/contributors)

.github/FUNDING.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# These are supported funding model platforms
22

3-
open_collective: typescript-tutorial-exercises
43
custom: ["https://www.paypal.com/paypalme/zly201"]

.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
folder: dist
3737
branch: gh-pages
3838
token: ${{ secrets.DEPLOY_TOKEN }}
39-
repository-name: typescript-tutorial-exercises/preview
39+
repository-name: type-challenges/site
4040
- name: Deploy to github pages
4141
if: ${{ github.ref == 'refs/heads/main' }}
4242
uses: JamesIves/github-pages-deploy-action@v4
4343
with:
4444
folder: dist
4545
branch: gh-pages
4646
token: ${{ secrets.DEPLOY_TOKEN }}
47-
repository-name: typescript-tutorial-exercises/typescript-tutorial-exercises.github.io
47+
repository-name: type-challenges/type-challenges.github.io

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Typescript Tutorial Exercise
22

3-
[![status](https://img.shields.io/github/actions/workflow/status/typescript-tutorial-exercises/core/deploy.yml)](https://github.com/typescript-tutorial-exercises/core/actions/workflows/deploy.yml)
4-
[![stars](https://img.shields.io/github/stars/typescript-tutorial-exercises/core.svg)](https://github.com/typescript-tutorial-exercises/core)
3+
[![status](https://img.shields.io/github/actions/workflow/status/type-challenges/site/deploy.yml)](https://github.com/type-challenges/site/actions/workflows/deploy.yml)
4+
[![stars](https://img.shields.io/github/stars/type-challenges/site.svg)](https://github.com/type-challenges/site)
55
[![licenses](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
6-
[![language](https://img.shields.io/github/languages/top/typescript-tutorial-exercises/core.svg)](https://github.com/typescript-tutorial-exercises/core)
6+
[![language](https://img.shields.io/github/languages/top/type-challenges/site.svg)](https://github.com/type-challenges/site)
77

88
## Getting Started
99

10-
Please go to [typescript-tutorial-exercises.github.io](https://typescript-tutorial-exercises.github.io/) to start your TypeScript travel!
10+
Please go to [type-challenges.github.io](https://type-challenges.github.io/) to start your TypeScript travel!
1111

1212
All exercises are from [type-challenges](https://github.com/type-challenges/type-challenges).
1313

@@ -19,7 +19,7 @@ Feel free to dive in! Open an issue or submit PRs. It may be helpful to read the
1919

2020
Thanks goes to these wonderful people:
2121

22-
[![contributors](https://contrib.rocks/image?repo=typescript-tutorial-exercises/core)](https://github.com/typescript-tutorial-exercises/core/graphs/contributors)
22+
[![contributors](https://contrib.rocks/image?repo=type-challenges/site)](https://github.com/type-challenges/site/graphs/contributors)
2323

2424

2525
## License

config/links.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"github-repo": "https://github.com/typescript-tutorial-exercises"
2+
"github-repo": "https://github.com/type-challenges/site"
33
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "typescript-tutorial-exercises",
2+
"name": "type-challenges-site",
33
"version": "1.0.0",
44
"author": {
55
"name": "ZLY201",

src/modules/Footer/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const Footer = function () {
66
return (
77
<div className={styles.container}>
88
<a href={linkJson['github-repo']} target={'_blank'} rel="noreferrer">
9-
copyright © 2023-{dayjs().year()} typescript-tutorial-exercises
9+
copyright © 2023-{dayjs().year()} Type Challenges
1010
</a>
1111
</div>
1212
);

0 commit comments

Comments
 (0)