You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/docs/how-to-contribute.md
+3-33
Original file line number
Diff line number
Diff line change
@@ -70,11 +70,7 @@ Public API를 변경하거나 구현을 간단하게 변경하려 할 때 [이
70
70
71
71
풀 리퀘스트를 처음 해보시나요? 무료 영상 시리즈를 통해 다음과 같이 기여하는 방법을 배울 수도 있습니다.
72
72
73
-
<<<<<<< HEAD
74
-
**[GitHub에서 오픈 소스 프로젝트에 기여하는 방법](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github)**
75
-
=======
76
-
**[How to Contribute to an Open Source Project on GitHub](https://app.egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github)**
77
-
>>>>>>> 35179e85933265cb7a4f5d51c10fbe70deba3787
73
+
**[GitHub에서 오픈 소스 프로젝트에 기여하는 방법](https://app.egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github)**
78
74
79
75
처음 발을 디딜 때 기여 과정에 익숙해질 수 있도록 비교적 영향력이 적은 버그를 포함하는 **[good first issues](https://github.com/facebook/react/issues?q=is:open+is:issue+label:"good+first+issue")** 목록은 기여 입문에 최적입니다.
80
76
@@ -88,29 +84,16 @@ Public API를 변경하거나 구현을 간단하게 변경하려 할 때 [이
88
84
89
85
**풀 리퀘스트를 보내기 전에,** 다음 사항을 확인해 주세요.
90
86
91
-
<<<<<<< HEAD
92
87
1.[저장소](https://github.com/facebook/react)를 포크하고 `master`로부터 새로운 브랜치를 생성합니다.
93
88
2. 저장소 루트에서 `yarn` 명령을 실행합니다.
94
89
3. 버그를 수정했거나 테스트가 필요한 코드를 추가했다면 테스트를 추가해 주세요.
95
90
4. 테스트가 통과하는지 확인해 주세요(`yarn test`). Tip : `yarn test --watch TestName` 명령은 개발할 때 도움이 됩니다.
96
-
5.`yarn test-prod` 명령을 실제 환경에서 테스트하기 위해 실행합니다. 이는 `yarn test`와 동일한 옵션을 지원합니다.
91
+
5.`yarn test --prod` 명령을 실제 환경에서 테스트하기 위해 실행합니다.
97
92
6. 디버거가 필요한 경우 `yarn debug-test --watch TestName` 을 실행하고 `chrome://inspect`을 열어 "Inspect"를 누르세요.
98
93
7.[prettier](https://github.com/prettier/prettier)로 코드를 포맷하세요. (`yarn prettier`).
99
94
8. 코드를 린트하세요 (`yarn lint`). Tip: `yarn linc` 는 변경된 파일만 확인할 수 있습니다.
100
95
9.[Flow](https://flowtype.org/) 타입 검사를 실행하세요. (`yarn flow`).
101
96
10. 아직 CLA에 서명하지 않았다면, 서명을 완료해주세요.
102
-
=======
103
-
1. Fork [the repository](https://github.com/facebook/react) and create your branch from `master`.
104
-
2. Run `yarn` in the repository root.
105
-
3. If you've fixed a bug or added code that should be tested, add tests!
106
-
4. Ensure the test suite passes (`yarn test`). Tip: `yarn test --watch TestName` is helpful in development.
107
-
5. Run `yarn test --prod` to test in the production environment.
108
-
6. If you need a debugger, run `yarn debug-test --watch TestName`, open `chrome://inspect`, and press "Inspect".
109
-
7. Format your code with [prettier](https://github.com/prettier/prettier) (`yarn prettier`).
110
-
8. Make sure your code lints (`yarn lint`). Tip: `yarn linc` to only check changed files.
111
-
9. Run the [Flow](https://flowtype.org/) typechecks (`yarn flow`).
0 commit comments