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 plugins/dll-plugin.mdx #381

Merged
merged 4 commits into from
Nov 1, 2021
Merged

Translate plugins/dll-plugin.mdx #381

merged 4 commits into from
Nov 1, 2021

Conversation

moonheekim0118
Copy link
Contributor

Summary

#7

리뷰 참고 사항

Glossary

Main- 메인 
Directory- 디렉터리
Resolve- 해석 
Object- 객체 
Prefix- 접두사 
Load - 로드
compilation - 컴파일 
Scope- 유효범위
Option - 옵션
Contents- 콘텐츠 
property - 프로퍼티 
Library- 라이브러리 
module - 모듈 
Tree shaking - 트리 쉐이킹 
Type- 유형 
entry points- 엔트리 포인트
Output - 출력
Context- 컨텍스트
Manifest- 매니페스트
Mapping- 매핑
Build - 빌드
Bundles - 번들
Split - 분할하다
Config- 설정
Configuration- 설정
Dependencies- 의존성
Web pack - 웹팩
plugin - 플러그인
export - export

@moonheekim0118 moonheekim0118 requested a review from a team as a code owner October 27, 2021 16:20
related:
- title: Code Splitting Example
url: https://github.com/webpack/webpack/blob/master/examples/explicit-vendor-chunk/README.md
---

The `DllPlugin` and `DllReferencePlugin` provide means to split bundles in a way that can drastically improve build time performance. The term "DLL" stands for Dynamic-link library which was originally introduced by Microsoft.
`DllPlugin``DllReferencePlugin`은 빌드 시간 성능을 크게 향상시키는 방식으로 번들을 분할하는 수단을 제공합니다. "DLL"이라는 용어는 원래 Microsoft에서 도입한 동적 링크 라이브러리를 나타냅니다.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

띄어쓰기 추가

DllPluginDllReferencePlugin은 -> DllPluginDllReferencePlugin


## DllPlugin

This plugin is used in a separate webpack configuration exclusively to create a dll-only-bundle. It creates a `manifest.json` file, which is used by the [`DllReferencePlugin`](#dllreferenceplugin) to map dependencies.
이 플러그인은 dll 전용 번들을 생성하기 위해 단독으로 별도의 webpack 설정에서 사용됩니다. 의존성을 매핑하기 위해 [`DllReferencePlugin`](#dllreferenceplugin) 에서 사용하는 `manifest.json`파일을 생성합니다.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

띄어쓰기 제거

DllReferencePlugin 에서 -> DllReferencePlugin에서


#### Mapped Mode

The content of the dll is mapped to the current directory. If a required file matches a file in the dll (after resolving), then the file from the dll is used instead.
dll의 콘텐츠는 현재 디렉터리에 매핑됩니다. 필요한 파일이 dll의 파일과 (확인 후) 일치하는 경우, dll의 파일이 대신 사용됩니다.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(확인 후) 부분이 괄호가 해제되어 있어도 읽을 때 어색하지 않은 것 같아요! 괄호를 없애고 나열하는 것은 어떨까요??

@moonheekim0118
Copy link
Contributor Author

@YukJiSoo 감사합니다 :) 리뷰해주신 부분 적용했습니다!

Copy link
Contributor

@dkstyle dkstyle left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

Copy link
Member

@YukJiSoo YukJiSoo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍👍👍

@dkstyle dkstyle merged commit b7eaeb2 into line:kr Nov 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants