From d553e8b0e28f5b93c8e5adfe7849160094619fe5 Mon Sep 17 00:00:00 2001 From: YeonJuan Date: Wed, 6 Jan 2021 23:38:06 +0900 Subject: [PATCH 1/3] Delete main.yml --- .github/workflows/main.yml | 43 -------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index b9d9a38f..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Create Pull Request -on: - schedule: - - cron: '00 11 * * 2' -jobs: - createPullRequest: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Use Node.js - uses: actions/setup-node@v1 - with: - node-version: '12.18.2' - - name: Install - run: npm install - - name: Build Lint - run: npm run build - - name: Run Lint - run: npm run lint - - name: Release - run: | - version="$(date +%Y-%m-%d-%S)" - npm run build:gitbook - cp -R _book/* . - git clean -fx _book - echo "::set-output name=version::$version" - id: release - - name: Create Pull Request - id: cpr - uses: peter-evans/create-pull-request@v2 - with: - token: ${{ secrets.GITHUB_TOKEN }} - commit-message: 'release ${{ steps.release.outputs.version }}' - committer: GitHub - author: GitHub - title: 'release ${{ steps.release.outputs.version }}' - branch: 'release-${{ steps.release.outputs.version }}' - labels: 프로젝트, automated pr - reviewers: yeonjuan - base: master - body: | - ## release - - version: ${{ steps.release.outputs.version }} From 034db31edebb9941320922ffb8b31f527971b401 Mon Sep 17 00:00:00 2001 From: Jihwan Oh Date: Wed, 13 Oct 2021 00:10:07 +0900 Subject: [PATCH 2/3] =?UTF-8?q?ts-for-js-programmers.md=20=EC=98=A4?= =?UTF-8?q?=ED=83=80=20=EC=88=98=EC=A0=95=20(#222)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 다음 단어의 오타를 수정합니다: 추기해 -> 추가해 --- pages/tutorials/ts-for-js-programmers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/tutorials/ts-for-js-programmers.md b/pages/tutorials/ts-for-js-programmers.md index 7d023d67..77a6bb2d 100644 --- a/pages/tutorials/ts-for-js-programmers.md +++ b/pages/tutorials/ts-for-js-programmers.md @@ -119,7 +119,7 @@ function deleteUser(user: User) { } ``` -JavaScript에서 사용할 수 있는 적은 종류의 원시 타입이 이미 있습니다.: `boolean`, `bigint`, `null`, `number`, `string`, `symbol`, `object`와 `undefined`는 인터페이스에서 사용할 수 있습니다. TypeScript는 몇 가지를 추기해 목록을 확장합니다. 예를 들어, `any` (무엇이든 허용합니다), [`unknown`](/en/play#example/unknown-and-never) (이 타입을 사용하는 사람이 타입이 무엇인지 선언했는가를 확인하십시오), [`never`](/en/play#example/unknown-and-never) (이 타입은 발생될 수 없습니다) `void` (`undefined`를 리턴하거나 리턴 값이 없는 함수). +JavaScript에서 사용할 수 있는 적은 종류의 원시 타입이 이미 있습니다.: `boolean`, `bigint`, `null`, `number`, `string`, `symbol`, `object`와 `undefined`는 인터페이스에서 사용할 수 있습니다. TypeScript는 몇 가지를 추가해 목록을 확장합니다. 예를 들어, `any` (무엇이든 허용합니다), [`unknown`](/en/play#example/unknown-and-never) (이 타입을 사용하는 사람이 타입이 무엇인지 선언했는가를 확인하십시오), [`never`](/en/play#example/unknown-and-never) (이 타입은 발생될 수 없습니다) `void` (`undefined`를 리턴하거나 리턴 값이 없는 함수). 타입을 구축하기 위한 두 가지 구문이 있다는 것을 꽤 빠르게 알 수 있을 것입니다.: [Interfaces and Types](/play/?e=83#example/types-vs-interfaces) - `interface`를 우선적으로 사용하고 특정 기능이 필요할 때 `type`을 사용해야 합니다. From 3fad5f8dab80e88a9190aae8c3256ce0b9bc7869 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Wed, 13 Oct 2021 00:12:13 +0900 Subject: [PATCH 3/3] docs: add fureweb-com as a contributor for translation (#224) * docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci] Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> --- .all-contributorsrc | 9 +++++ README.md | 90 +++++++++++++++++++++++---------------------- 2 files changed, 55 insertions(+), 44 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 3765a039..56913a60 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -387,6 +387,15 @@ "contributions": [ "translation" ] + }, + { + "login": "fureweb-com", + "name": "Jihwan Oh", + "avatar_url": "https://avatars.githubusercontent.com/u/22983900?v=4", + "profile": "https://fureweb-com.github.io", + "contributions": [ + "translation" + ] } ], "contributorsPerLine": 8, diff --git a/README.md b/README.md index d288e427..bd30ca1c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ # TypeScript-Handbook 한글 문서 [![Build Status](https://api.travis-ci.com/typescript-kr/typescript-kr.github.io.svg?branch=master)](https://travis-ci.com/github/typescript-kr/typescript-kr.github.io) -[![All Contributors](https://img.shields.io/badge/all_contributors-42-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-43-orange.svg?style=flat-square)](#contributors-) [![Release Date](https://img.shields.io/github/release-date/typescript-kr/typescript-kr.github.io)](https://github.com/typescript-kr/typescript-kr.github.io/releases) [![Stars](https://img.shields.io/github/stars/typescript-kr/typescript-kr.github.io)](https://github.com/typescript-kr/typescript-kr.github.io/stargazers) @@ -33,63 +33,65 @@ - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - + + +

YeonJuan

🌍

Kibeom Kwon

🌍

GuyeolJeong

🌍

Seohee Park

🌍

poco.j

🌍

Sungmin Chris Yang

🌍

publisherKim

🌍

Yeonggyu Lim

🌍

YeonJuan

🌍

Kibeom Kwon

🌍

GuyeolJeong

🌍

Seohee Park

🌍

poco.j

🌍

Sungmin Chris Yang

🌍

publisherKim

🌍

Yeonggyu Lim

🌍

YeonTaeKIM

🌍

taekyunKimDev

🌍

rudwn Aiden

🌍

Myeonghwan Cho

🌍

Jaewon Seo

🌍

Taemin Shin

🌍

badger93

🌍

kok202

🌍

YeonTaeKIM

🌍

taekyunKimDev

🌍

rudwn Aiden

🌍

Myeonghwan Cho

🌍

Jaewon Seo

🌍

Taemin Shin

🌍

badger93

🌍

kok202

🌍

Yeji Kang

🌍

Myoji

🌍

Heeveloper

🌍

bobfull

🌍

changmin Lee

🌍

Hahn

🌍

33577

🌍

Journey K

🌍

Yeji Kang

🌍

Myoji

🌍

Heeveloper

🌍

bobfull

🌍

changmin Lee

🌍

Hahn

🌍

33577

🌍

Journey K

🌍

planetis

🌍

Hyuntae EOM

🌍

Yunhoe, Ku

🌍

realgo

🌍

SeohyunYoon

🌍

진석현

🌍

ssMinji

🌍

Wish Jung

🌍

planetis

🌍

Hyuntae EOM

🌍

Yunhoe, Ku

🌍

realgo

🌍

SeohyunYoon

🌍

진석현

🌍

ssMinji

🌍

Wish Jung

🌍

jieun song

🌍

Jung Min O

🌍

sangminK

🌍

Yoo Dahyoung

🌍

annkimm

🌍

JeongMin Woo

🌍

sooyun429

🌍

hannahbanana

🌍

jieun song

🌍

Jung Min O

🌍

sangminK

🌍

Yoo Dahyoung

🌍

annkimm

🌍

JeongMin Woo

🌍

sooyun429

🌍

hannahbanana

🌍

Chorom Ham

🌍

Hyunjae Park

🌍

Chorom Ham

🌍

Hyunjae Park

🌍

Jihwan Oh

🌍
- + + [마이그레이션된 프로젝트](https://github.com/yeonjuan/TypeScript-Handbook-ko)의 컨트리뷰터도 포함된 목록 입니다 :)