Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translate contribute/release-process.md #159

Merged
merged 4 commits into from
Aug 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/concepts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ W> 모든 유형의 모듈(예: `.css`)을 `import` 하는 기능은 webpack의

상위 수준에서 **로더는** webpack 설정에 두 가지 속성을 가집니다.

1. 변한이 필요한 파일(들)을 식별하는 `test` 속성
1. 변환이 필요한 파일(들)을 식별하는 `test` 속성
2. 변환을 수행하는데 사용되는 로더를 가리키는 `use` 속성

**webpack.config.js**
Expand Down
10 changes: 6 additions & 4 deletions src/content/contribute/release-process.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ contributors:
- sokra
- byzyk
- chenxsan
translators:
- yoonminsohappy
---

The release process for deploying webpack is actually quite painless. Read through the following steps, so you have a clear understanding of how it's done.
webpack 배포를 위한 릴리스 프로세스는 실제로 매우 간단합니다. 다음 단계를 읽으면, 수행 방법을 명확하게 이해할 수 있습니다.

## Pull Requests

When merging pull requests into the `main` branch, select the _Create Merge Commit_ option.
pull requests를 `main`브랜치로 병합할 때, _Create Merge Commit_ 옵션을 선택합니다.

## Releasing

Expand All @@ -22,6 +24,6 @@ npm version minor && git push --follow-tags && npm publish
npm version major && git push --follow-tags && npm publish
```

_This will increment the package version, commits the changes, cuts a **local tag**, push to github & publish the npm package._
_그러면 패키지 버전이 증가되고, 변경 내용이 커밋되며, **로컬 태그**를 잘라내고, github에 푸시 후 npm 패키지를 배포합니다._

After that go to the github [releases page](https://github.com/webpack/webpack/releases) and write a Changelog for the new tag.
그런 다음 github [릴리스 페이지](https://github.com/webpack/webpack/releases)로 이동하여 새 태그에 대한 변경 로그를 작성합니다.