From 5ced4fbe830383c76c9decb14be10776c1023540 Mon Sep 17 00:00:00 2001 From: ZLY201 <951711127@qq.com> Date: Fri, 7 Jun 2024 18:53:45 +0800 Subject: [PATCH 1/2] docs: update README --- .github/workflows/deploy.yml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 304ad9d..c9826ef 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,7 +36,7 @@ jobs: folder: dist branch: gh-pages token: ${{ secrets.DEPLOY_TOKEN }} - repository-name: typescript-tutorial-exercises/preview + repository-name: type-challenges/site - name: Deploy to github pages if: ${{ github.ref == 'refs/heads/main' }} uses: JamesIves/github-pages-deploy-action@v4 @@ -44,4 +44,4 @@ jobs: folder: dist branch: gh-pages token: ${{ secrets.DEPLOY_TOKEN }} - repository-name: typescript-tutorial-exercises/typescript-tutorial-exercises.github.io + repository-name: type-challenges/type-challenges.github.io diff --git a/README.md b/README.md index f6c9a1d..2f4bee6 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ ## Getting Started -Please go to [typescript-tutorial-exercises.github.io](https://typescript-tutorial-exercises.github.io/) to start your TypeScript travel! +Please go to [type-challenges.github.io](https://type-challenges.github.io/) to start your TypeScript travel! All exercises are from [type-challenges](https://github.com/type-challenges/type-challenges). From 281a6d8bc881db2bfac6ee758bb5df03547fbefe Mon Sep 17 00:00:00 2001 From: ZLY201 <951711127@qq.com> Date: Fri, 7 Jun 2024 18:58:31 +0800 Subject: [PATCH 2/2] docs: replace github repo name --- .github/CONTRIBUTING.md | 10 +++++----- .github/FUNDING.yml | 1 - README.md | 8 ++++---- config/links.json | 2 +- package.json | 2 +- src/modules/Footer/index.tsx | 2 +- 6 files changed, 12 insertions(+), 13 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index d685b09..cbb81bd 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,8 +1,8 @@ -# Typescript-Tutorial-Exercises Contributing Guide +# Type-Challenges-Site Contributing Guide 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: -- [Code of Conduct](https://github.com/typescript-tutorial-exercises/core/blob/main/CODE_OF_CONDUCT.md) +- [Code of Conduct](https://github.com/type-challenges/site/blob/main/CODE_OF_CONDUCT.md) - [Issue Reporting Guidelines](#issue-reporting-guidelines) - [Pull Request Guidelines](#pull-request-guidelines) - [Development Setup](#development-setup) @@ -44,7 +44,7 @@ $ yarn setup ### Committing Changes -Please follow the commit specification. See [`.commitlintrc.json`](https://github.com/typescript-tutorial-exercises/core/blob/main/.commitlintrc.json) get help. +Please follow the commit specification. See [`.commitlintrc.json`](https://github.com/type-challenges/site/blob/main/.commitlintrc.json) get help. ### Commonly used NPM scripts @@ -68,6 +68,6 @@ All our source files are written in typescript, please make sure your submission ## Credits -Thank you to all the people who have already contributed to `typescript-tutorial-exercises`! +Thank you to all the people who have already contributed to `type-challenges`! -[![contributors](https://contrib.rocks/image?repo=typescript-tutorial-exercises/core)](https://github.com/typescript-tutorial-exercises/core/graphs/contributors) +[![contributors](https://contrib.rocks/image?repo=type-challenges/site)](https://github.com/type-challenges/site/graphs/contributors) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 19dc619..bc557f1 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,4 +1,3 @@ # These are supported funding model platforms -open_collective: typescript-tutorial-exercises custom: ["https://www.paypal.com/paypalme/zly201"] diff --git a/README.md b/README.md index 2f4bee6..b3fe4e1 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # Typescript Tutorial Exercise -[![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) -[![stars](https://img.shields.io/github/stars/typescript-tutorial-exercises/core.svg)](https://github.com/typescript-tutorial-exercises/core) +[![status](https://img.shields.io/github/actions/workflow/status/type-challenges/site/deploy.yml)](https://github.com/type-challenges/site/actions/workflows/deploy.yml) +[![stars](https://img.shields.io/github/stars/type-challenges/site.svg)](https://github.com/type-challenges/site) [![licenses](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) -[![language](https://img.shields.io/github/languages/top/typescript-tutorial-exercises/core.svg)](https://github.com/typescript-tutorial-exercises/core) +[![language](https://img.shields.io/github/languages/top/type-challenges/site.svg)](https://github.com/type-challenges/site) ## Getting Started @@ -19,7 +19,7 @@ Feel free to dive in! Open an issue or submit PRs. It may be helpful to read the Thanks goes to these wonderful people: -[![contributors](https://contrib.rocks/image?repo=typescript-tutorial-exercises/core)](https://github.com/typescript-tutorial-exercises/core/graphs/contributors) +[![contributors](https://contrib.rocks/image?repo=type-challenges/site)](https://github.com/type-challenges/site/graphs/contributors) ## License diff --git a/config/links.json b/config/links.json index 7ff1c4a..a7069b3 100644 --- a/config/links.json +++ b/config/links.json @@ -1,3 +1,3 @@ { - "github-repo": "https://github.com/typescript-tutorial-exercises" + "github-repo": "https://github.com/type-challenges/site" } diff --git a/package.json b/package.json index 5a1b912..a5238ed 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "typescript-tutorial-exercises", + "name": "type-challenges-site", "version": "1.0.0", "author": { "name": "ZLY201", diff --git a/src/modules/Footer/index.tsx b/src/modules/Footer/index.tsx index 0078e57..7825151 100644 --- a/src/modules/Footer/index.tsx +++ b/src/modules/Footer/index.tsx @@ -6,7 +6,7 @@ const Footer = function () { return (
- copyright © 2023-{dayjs().year()} typescript-tutorial-exercises + copyright © 2023-{dayjs().year()} Type Challenges
);