Skip to content

Commit b7eaeb2

Browse files
authoredNov 1, 2021
Translate plugins/dll-plugin.mdx (#381)
* translate(plugin/dll-plugin): translate korean * fix: remove duplicated sentence * fix: revise word * feat: apply reviews
1 parent 0384b99 commit b7eaeb2

File tree

1 file changed

+32
-30
lines changed

1 file changed

+32
-30
lines changed
 

‎src/content/plugins/dll-plugin.mdx

+32-30
Original file line numberDiff line numberDiff line change
@@ -10,73 +10,75 @@ contributors:
1010
- byzyk
1111
- EugeneHlushko
1212
- EslamHiko
13+
translators:
14+
- moonheekim0118
1315
related:
1416
- title: Code Splitting Example
1517
url: https://github.com/webpack/webpack/blob/master/examples/explicit-vendor-chunk/README.md
1618
---
1719

18-
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.
20+
`DllPlugin``DllReferencePlugin`은 빌드 시간 성능을 크게 향상시키는 방식으로 번들을 분할하는 수단을 제공합니다. "DLL"이라는 용어는 원래 Microsoft에서 도입한 동적 링크 라이브러리를 나타냅니다.
1921

2022
## DllPlugin
2123

22-
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.
24+
이 플러그인은 dll 전용 번들을 생성하기 위해 단독으로 별도의 webpack 설정에서 사용됩니다. 의존성을 매핑하기 위해 [`DllReferencePlugin`](#dllreferenceplugin)에서 사용하는 `manifest.json`파일을 생성합니다.
2325

24-
- `context` (optional): context of requests in the manifest file (defaults to the webpack context.)
25-
- `format` (boolean = false): If `true`, manifest json file (output) will be formatted.
26-
- `name`: name of the exposed dll function ([TemplatePaths](https://github.com/webpack/webpack/blob/master/lib/TemplatedPathPlugin.js): `[fullhash]` & `[name]` )
27-
- `path`: **absolute path** to the manifest json file (output)
28-
- `entryOnly` (boolean = true): if `true`, only entry points will be exposed
29-
- `type`: type of the dll bundle
26+
- `context` (선택): 매니페스트 파일의 요청 컨텍스트 (기본값은 webpack 컨텍스트)
27+
- `format` (boolean = false): `true`인 경우 매니페스트 json 파일(출력)이 형식화됩니다.
28+
- `name`: 노출된 dll 함수의 이름 ([TemplatePaths](https://github.com/webpack/webpack/blob/master/lib/TemplatedPathPlugin.js): `[fullhash]` & `[name]` )
29+
- `path`: 매니페스트 json 파일의 **절대 경로** (출력)
30+
- `entryOnly` (boolean = true): `true`인 경우 엔트리 포인트만 노출됩니다.
31+
- `type`: dll 번들의 유형
3032

3133
```javascript
3234
new webpack.DllPlugin(options);
3335
```
3436

35-
W> We recommend using DllPlugin only with `entryOnly: true`, otherwise tree shaking in the DLL won't work as all the exports might be used.
37+
W> DllPlugin을 `entryOnly: true`와 함께 사용하는 것을 권장합니다. 그렇지 않으면 모든 export가 사용될 수 있으므로 DLL에서 트리 쉐이킹이 작동하지 않습니다.
3638

37-
Creates a `manifest.json` which is written to the given `path`. It contains mappings from require and import requests to module ids. It is used by the `DllReferencePlugin`.
39+
주어진 `경로`에 기록되는 `manifest.json`을 생성합니다. 여기에는 require와 import 요청에서 모듈 id로의 매핑이 포함됩니다. 이는 `DllReferencePlugin` 에서 사용됩니다.
3840

39-
Combine this plugin with [`output.library`](/configuration/output/#outputlibrary) option to expose (aka, put into the global scope) the dll function.
41+
이 플러그인을 [`output.library`](/configuration/output/#outputlibrary)옵션과 결합하여 dll 함수를 노출(전역 범위로 확대)합니다.
4042

4143
## DllReferencePlugin
4244

43-
This plugin is used in the primary webpack config, it references the dll-only-bundle(s) to require pre-built dependencies.
45+
이 플러그인은 기본 webpack 설정에서 사용되며, 사전 빌드된 의존성을 require 하기 위해 dll 전용 번들을 참조합니다.
4446

45-
- `context`: (**absolute path**) context of requests in the manifest (or content property)
46-
- `extensions`: Extensions used to resolve modules in the dll bundle (only used when using 'scope').
47-
- `manifest` : an object containing `content` and `name` or a string to the absolute path of the JSON manifest to be loaded upon compilation
48-
- `content` (optional): the mappings from request to module id (defaults to `manifest.content`)
49-
- `name` (optional): an identifier where the dll is exposed (defaults to `manifest.name`) (see also [`externals`](/configuration/externals/))
50-
- `scope` (optional): prefix which is used for accessing the content of the dll
51-
- `sourceType` (optional): how the dll is exposed ([libraryTarget](/configuration/output/#outputlibrarytarget))
47+
- `context`: 매니페스트(또는 콘텐츠 프로퍼티)에 있는 요청의 (**절대 경로**) 컨텍스트
48+
- `extensions`: dll 번들의 모듈을 해결하는데 사용되는 확장입니다(‘유효범위’를 사용할 때만 사용).
49+
- `manifest` : `content` `name`을 포함하는 객체 또는 컴파일 시 로드될 JSON 매니페스트의 절대 경로에 대한 문자열
50+
- `content` (선택): 요청에서 모듈 id 로의 매핑(기본값은 `manifest.content`)
51+
- `name` (선택): dll이 노출되는 식별자(기본값은 `manifest.name`)([`externals`](/configuration/externals/) 참조)
52+
- `scope` (선택): dll의 콘텐츠에 접근하는데 사용되는 접두사
53+
- `sourceType` (선택): dll이 노출되는 방법([libraryTarget](/configuration/output/#outputlibrarytarget))
5254

5355
```javascript
5456
new webpack.DllReferencePlugin(options);
5557
```
5658

57-
References a dll manifest file to map dependency names to module ids, then requires them as needed using the internal `__webpack_require__` function.
59+
dll 매니페스트 파일을 참조하여 의존성 이름을 모듈 id에 매핑한 다음, 내부 `__webpack_require__`함수를 사용하여 필요에 따라 요청합니다.
5860

59-
W> Keep the `name` consistent with [`output.library`](/configuration/output/#outputlibrary).
61+
W> `name`[`output.library`](/configuration/output/#outputlibrary)와 일관되게 유지합니다.
6062

6163
### Modes
6264

63-
This plugin can be used in two different modes, _scoped_ and _mapped_.
65+
이 플러그인은 _scoped__mapped_ 두 가지 모드에서 사용할 수 있습니다.
6466

6567
#### Scoped Mode
6668

67-
The content of the dll is accessible under a module prefix. i.e. with `scope = 'xyz'` a file `abc` in the dll can be access via `require('xyz/abc')`.
69+
dll의 콘텐츠는 모듈 접두사 아래에서 접근 가능합니다. 즉, `scope = 'xyz'`로 dll의 파일 `abc` `require('xyz/abc')`를 통해 접근할 수 있습니다.
6870

69-
T> [See an example use of scope](https://github.com/webpack/webpack/tree/master/examples/dll-user)
71+
T> [유효범위 사용의 예제를 살펴보세요.](https://github.com/webpack/webpack/tree/master/examples/dll-user)
7072

7173
#### Mapped Mode
7274

73-
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.
75+
dll의 콘텐츠는 현재 디렉터리에 매핑됩니다. 필요한 파일이 dll의 파일과 확인 후 일치하는 경우, dll의 파일이 대신 사용됩니다.
7476

75-
Because this happens after resolving every file in the dll bundle, the same paths must be available for the consumer of the dll bundle. i.e. if the dll contains `lodash` and the file `abc`, `require('lodash')` and `require('./abc')` will be used from the dll, rather than building them into the main bundle.
77+
이것은 dll 번들의 모든 파일을 해석한 후 발생하기 때문에 dll 번들의 사용자에 대해 동일한 경로를 사용할 수 있어야 합니다. 즉, dll에 `lodash` 가 포함되어 있고 `abc` 파일이 있으면 `require('lodash')` `require('./abc')` 가 메인 번들로 빌드되지 않고 dll에서 사용됩니다.
7678

7779
## Usage
7880

79-
W> `DllReferencePlugin` and `DllPlugin` are used in _separate_ webpack configs.
81+
W> `DllReferencePlugin``DllPlugin`_별도의_ wepback 설정에서 사용됩니다.
8082

8183
**webpack.vendor.config.js**
8284

@@ -103,11 +105,11 @@ new webpack.DllReferencePlugin({
103105

104106
## Examples
105107

106-
[Vendor](https://github.com/webpack/webpack/tree/master/examples/dll) and [User](https://github.com/webpack/webpack/tree/master/examples/dll-user)
108+
[Vendor](https://github.com/webpack/webpack/tree/master/examples/dll) [User](https://github.com/webpack/webpack/tree/master/examples/dll-user)
107109

108-
_Two separate example folders. Demonstrates scope and context._
110+
_두 개의 개별 예제 폴더로, 유효범위와 컨텍스트를 보여줍니다._
109111

110-
T> Multiple `DllPlugins` and multiple `DllReferencePlugins`.
112+
T> 다중 `DllPlugins`과 다중 `DllReferencePlugins`
111113

112114
## References
113115

0 commit comments

Comments
 (0)