Skip to content

Commit a5abc8f

Browse files
authored
Merge pull request #285 from reactjs/sync-888d9eae
Sync with reactjs.org @ 888d9ea
2 parents 0004b82 + 0dd11ab commit a5abc8f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

content/community/courses.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ permalink: community/courses.html
1818

1919
- [Frontend Armory: React Fundamentals](https://frontarm.com/courses/react-fundamentals/) - Learn React without the buzzwords.
2020

21-
- [Egghead.io: The Beginner's Guide to ReactJS](https://egghead.io/courses/the-beginner-s-guide-to-reactjs) - Free course for React newbies and those looking to get a better understanding of React fundamentals.
21+
- [Egghead.io: The Beginner's Guide to ReactJS](https://egghead.io/courses/the-beginner-s-guide-to-react) - Free course for React newbies and those looking to get a better understanding of React fundamentals.
2222

2323
- [Free React Bootcamp](https://tylermcginnis.com/free-react-bootcamp/) - Recordings from three days of a free online React bootcamp.
2424

content/docs/create-a-new-react-app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ React 팀의 추천 방법은 아래와 같습니다
3939

4040
[Create React App](https://github.com/facebookincubator/create-react-app)**React 배우기**에 간편한 환경입니다. 그리고 시작하기에 최고의 방법은 **새로운 [싱글 페이지 애플리케이션](/docs/glossary.html#single-page-application)** 입니다.
4141

42-
이것은 개발 환경을 설정하고, 최신 JavaScript를 사용하게 해주며, 좋은 개발 경험과 프로덕션 앱 최적화를 해줍니다. [Node 8.10 혹은 상위 버전 및 npm 5.6 혹은 상위 버전](https://nodejs.org/en/)이 필요합니다. 새로운 프로젝트를 만들기 위해 아래의 명령어를 실행합니다.
42+
이것은 개발 환경을 설정하고, 최신 JavaScript를 사용하게 해주며, 좋은 개발 경험과 프로덕션 앱 최적화를 해줍니다. [Node 10.16 혹은 상위 버전 및 npm 5.6 혹은 상위 버전](https://nodejs.org/en/)이 필요합니다. 새로운 프로젝트를 만들기 위해 아래의 명령어를 실행합니다.
4343

4444
```bash
4545
npx create-react-app my-app

plugins/gatsby-transformer-versions-yaml/gatsby-node.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ exports.onPostBuild = async ({store}) => {
2323
);
2424

2525
// versions.yml structure is [{path: string, url: string, ...}, ...]
26-
createRedirects(
26+
await createRedirects(
2727
versions
2828
.filter(version => version.path && version.url)
2929
.map(version => ({

0 commit comments

Comments
 (0)