From f82cba65c927762b69fdfb19ce925b878304ba5d Mon Sep 17 00:00:00 2001 From: "yoonminsohappy@gmail.com" Date: Tue, 10 Aug 2021 10:53:34 +0900 Subject: [PATCH 1/4] docs: issue #157 --- src/content/concepts/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/concepts/index.md b/src/content/concepts/index.md index b3d792825a6..3ae91d10f56 100644 --- a/src/content/concepts/index.md +++ b/src/content/concepts/index.md @@ -94,7 +94,7 @@ W> 모든 유형의 모듈(예: `.css`)을 `import` 하는 기능은 webpack의 상위 수준에서 **로더는** webpack 설정에 두 가지 속성을 가집니다. -1. 변한이 필요한 파일(들)을 식별하는 `test` 속성 +1. 변환이 필요한 파일(들)을 식별하는 `test` 속성 2. 변환을 수행하는데 사용되는 로더를 가리키는 `use` 속성 **webpack.config.js** From f1982efaa61db47f2a9cf16f61cad6507a9481e1 Mon Sep 17 00:00:00 2001 From: "yoonminsohappy@gmail.com" Date: Tue, 10 Aug 2021 11:49:12 +0900 Subject: [PATCH 2/4] add: translate --- src/content/contribute/release-process.md | 29 ++++++++++++++++++++++ src/content/contribute/release-process.mdx | 27 -------------------- 2 files changed, 29 insertions(+), 27 deletions(-) create mode 100644 src/content/contribute/release-process.md delete mode 100644 src/content/contribute/release-process.mdx diff --git a/src/content/contribute/release-process.md b/src/content/contribute/release-process.md new file mode 100644 index 00000000000..76bf43be96a --- /dev/null +++ b/src/content/contribute/release-process.md @@ -0,0 +1,29 @@ +--- +title: Release Process +sort: 6 +contributors: + - d3viant0ne + - sokra + - byzyk + - chenxsan +translators: + - yoonminsohappy +--- + +webpack 배포를 위한 릴리스 프로세스는 실제로 매우 고통스럽지는 않습니다. 다음 단계를 읽으면, 수행 방법을 명확하게 이해할 수 있습니다. + +## Pull Requests + +pull requests를 `main`브랜치로 병합할 때, _Create Merge Commit_ 옵션을 선택합니다. + +## Releasing + +```bash +npm version patch && git push --follow-tags && npm publish +npm version minor && git push --follow-tags && npm publish +npm version major && git push --follow-tags && npm publish +``` + +_이것은 패키지 버전을 증가시키고, 변경 사항을 커밋하고, **로컬 태그를** 자르고, github에 푸시하고 & npm 패키지를 배포합니다._ + +그런 다음 github [릴리스 페이지](https://github.com/webpack/webpack/releases)로 이동하여 새 태그에 대한 변경 로그를 작성합니다. \ No newline at end of file diff --git a/src/content/contribute/release-process.mdx b/src/content/contribute/release-process.mdx deleted file mode 100644 index 490a094c235..00000000000 --- a/src/content/contribute/release-process.mdx +++ /dev/null @@ -1,27 +0,0 @@ ---- -title: Release Process -sort: 6 -contributors: - - d3viant0ne - - sokra - - byzyk - - chenxsan ---- - -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. - -## Pull Requests - -When merging pull requests into the `main` branch, select the _Create Merge Commit_ option. - -## Releasing - -```bash -npm version patch && git push --follow-tags && npm publish -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._ - -After that go to the github [releases page](https://github.com/webpack/webpack/releases) and write a Changelog for the new tag. From df47c20813bf2b2b40423c9e26206b6b4e8d8d04 Mon Sep 17 00:00:00 2001 From: "yoonminsohappy@gmail.com" Date: Wed, 11 Aug 2021 09:50:19 +0900 Subject: [PATCH 3/4] [RE]translate contribute/release-process --- .../contribute/{release-process.md => release-process.mdx} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/content/contribute/{release-process.md => release-process.mdx} (87%) diff --git a/src/content/contribute/release-process.md b/src/content/contribute/release-process.mdx similarity index 87% rename from src/content/contribute/release-process.md rename to src/content/contribute/release-process.mdx index 76bf43be96a..8545e47acf8 100644 --- a/src/content/contribute/release-process.md +++ b/src/content/contribute/release-process.mdx @@ -10,7 +10,7 @@ translators: - yoonminsohappy --- -webpack 배포를 위한 릴리스 프로세스는 실제로 매우 고통스럽지는 않습니다. 다음 단계를 읽으면, 수행 방법을 명확하게 이해할 수 있습니다. +webpack 배포를 위한 릴리스 프로세스는 실제로 매우 간단합니다. 다음 단계를 읽으면, 수행 방법을 명확하게 이해할 수 있습니다. ## Pull Requests From 06c0221dc7c10fb1f5a2857c48241540527913b3 Mon Sep 17 00:00:00 2001 From: "yoonminsohappy@gmail.com" Date: Wed, 11 Aug 2021 17:58:57 +0900 Subject: [PATCH 4/4] =?UTF-8?q?docs:=20=EB=B2=88=EC=97=AD=20=EB=AC=B8?= =?UTF-8?q?=EB=A7=A5=20=20=EC=88=98=EC=A0=95(=EB=A6=AC=EB=B7=B0=20?= =?UTF-8?q?=EB=B0=98=EC=98=81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/contribute/release-process.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/contribute/release-process.mdx b/src/content/contribute/release-process.mdx index 8545e47acf8..5d39c0f89f4 100644 --- a/src/content/contribute/release-process.mdx +++ b/src/content/contribute/release-process.mdx @@ -24,6 +24,6 @@ npm version minor && git push --follow-tags && npm publish npm version major && git push --follow-tags && npm publish ``` -_이것은 패키지 버전을 증가시키고, 변경 사항을 커밋하고, **로컬 태그를** 자르고, github에 푸시하고 & npm 패키지를 배포합니다._ +_그러면 패키지 버전이 증가되고, 변경 내용이 커밋되며, **로컬 태그**를 잘라내고, github에 푸시 후 npm 패키지를 배포합니다._ 그런 다음 github [릴리스 페이지](https://github.com/webpack/webpack/releases)로 이동하여 새 태그에 대한 변경 로그를 작성합니다. \ No newline at end of file