2017-04-20 03:45:42 +08:00
|
|
|
# DllReference
|
|
|
|
|
|
|
|
|
|
[DllPlugin documentation](https://webpack.js.org/plugins/dll-plugin)
|
|
|
|
|
|
|
|
|
|
This is the _reference_ bundle (with the manifests) for [dll user example](https://github.com/webpack/webpack/tree/master/examples/dll-user)
|
|
|
|
|
|
2015-05-17 00:27:59 +08:00
|
|
|
# webpack.config.js
|
|
|
|
|
|
2019-04-09 02:29:40 +08:00
|
|
|
```javascript
|
2015-05-17 00:27:59 +08:00
|
|
|
var path = require("path");
|
2015-06-13 23:41:14 +08:00
|
|
|
var webpack = require("../../");
|
2015-05-17 00:27:59 +08:00
|
|
|
module.exports = {
|
2017-12-14 17:58:03 +08:00
|
|
|
// mode: "development || "production",
|
2016-09-07 20:57:53 +08:00
|
|
|
resolve: {
|
2017-03-31 02:25:01 +08:00
|
|
|
extensions: [".js", ".jsx"]
|
2016-09-07 20:57:53 +08:00
|
|
|
},
|
2015-05-17 00:27:59 +08:00
|
|
|
entry: {
|
2015-10-13 22:19:11 +08:00
|
|
|
alpha: ["./alpha", "./a", "module"],
|
2016-09-07 20:57:53 +08:00
|
|
|
beta: ["./beta", "./b", "./c"]
|
2015-05-17 00:27:59 +08:00
|
|
|
},
|
|
|
|
|
output: {
|
2018-01-05 04:39:29 +08:00
|
|
|
path: path.join(__dirname, "dist"),
|
2015-05-17 00:27:59 +08:00
|
|
|
filename: "MyDll.[name].js",
|
2019-01-28 09:27:57 +08:00
|
|
|
library: "[name]_[fullhash]"
|
2015-05-17 00:27:59 +08:00
|
|
|
},
|
|
|
|
|
plugins: [
|
2015-06-13 23:41:14 +08:00
|
|
|
new webpack.DllPlugin({
|
2018-01-05 04:39:29 +08:00
|
|
|
path: path.join(__dirname, "dist", "[name]-manifest.json"),
|
2019-01-28 09:27:57 +08:00
|
|
|
name: "[name]_[fullhash]"
|
2015-05-17 00:27:59 +08:00
|
|
|
})
|
|
|
|
|
]
|
|
|
|
|
};
|
|
|
|
|
```
|
|
|
|
|
|
2018-01-05 04:39:29 +08:00
|
|
|
# dist/MyDll.alpha.js
|
2015-05-17 00:27:59 +08:00
|
|
|
|
2019-04-09 02:29:40 +08:00
|
|
|
```javascript
|
2019-10-09 05:45:47 +08:00
|
|
|
var alpha_ae51ad2645b80ad6a788 =
|
|
|
|
|
/******/ ((modules, runtime) => { // webpackBootstrap
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ "use strict";
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ // The module cache
|
|
|
|
|
/******/ var installedModules = {};
|
2017-03-31 02:25:01 +08:00
|
|
|
/******/
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ // The require function
|
|
|
|
|
/******/ function __webpack_require__(moduleId) {
|
2017-03-31 02:25:01 +08:00
|
|
|
/******/
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ // Check if module is in cache
|
2017-04-20 03:45:42 +08:00
|
|
|
/******/ if(installedModules[moduleId]) {
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ return installedModules[moduleId].exports;
|
2017-04-20 03:45:42 +08:00
|
|
|
/******/ }
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ // Create a new module (and put it into the cache)
|
|
|
|
|
/******/ var module = installedModules[moduleId] = {
|
2016-06-06 02:51:44 +08:00
|
|
|
/******/ i: moduleId,
|
|
|
|
|
/******/ l: false,
|
|
|
|
|
/******/ exports: {}
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ };
|
2017-03-31 02:25:01 +08:00
|
|
|
/******/
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ // Execute the module function
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ modules[moduleId](module, module.exports, __webpack_require__);
|
2017-03-31 02:25:01 +08:00
|
|
|
/******/
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ // Flag the module as loaded
|
2016-06-06 02:51:44 +08:00
|
|
|
/******/ module.l = true;
|
2017-03-31 02:25:01 +08:00
|
|
|
/******/
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ // Return the exports of the module
|
|
|
|
|
/******/ return module.exports;
|
|
|
|
|
/******/ }
|
2017-03-31 02:25:01 +08:00
|
|
|
/******/
|
|
|
|
|
/******/
|
2019-02-05 01:52:39 +08:00
|
|
|
/******/ // the startup function
|
|
|
|
|
/******/ function startup() {
|
|
|
|
|
/******/ // Load entry module and return exports
|
|
|
|
|
/******/ return __webpack_require__(0);
|
2017-11-24 15:40:39 +08:00
|
|
|
/******/ };
|
2018-01-20 00:06:59 +08:00
|
|
|
/******/
|
2019-02-05 01:52:39 +08:00
|
|
|
/******/ // run startup
|
|
|
|
|
/******/ return startup();
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ })
|
|
|
|
|
/************************************************************************/
|
|
|
|
|
/******/ ([
|
|
|
|
|
/* 0 */
|
2017-06-05 22:12:12 +08:00
|
|
|
/*!*****************!*\
|
|
|
|
|
!*** dll alpha ***!
|
|
|
|
|
\*****************/
|
2019-08-05 19:32:25 +08:00
|
|
|
/*! exports [maybe provided (runtime-defined)] [maybe used (runtime-defined)] */
|
|
|
|
|
/*! runtime requirements: __webpack_require__, module */
|
2019-10-09 05:45:47 +08:00
|
|
|
/***/ ((module, __unusedexports, __webpack_require__) => {
|
2015-05-17 00:27:59 +08:00
|
|
|
|
2017-06-05 22:12:12 +08:00
|
|
|
module.exports = __webpack_require__;
|
2015-05-17 00:27:59 +08:00
|
|
|
|
2017-03-31 02:25:01 +08:00
|
|
|
/***/ }),
|
2015-05-17 00:27:59 +08:00
|
|
|
/* 1 */
|
|
|
|
|
/*!******************!*\
|
|
|
|
|
!*** ./alpha.js ***!
|
|
|
|
|
\******************/
|
2019-08-05 19:32:25 +08:00
|
|
|
/*! exports [maybe provided (runtime-defined)] [maybe used (runtime-defined)] */
|
2018-12-19 21:05:17 +08:00
|
|
|
/*! runtime requirements: module */
|
2019-10-09 05:45:47 +08:00
|
|
|
/***/ ((module) => {
|
2015-05-17 00:27:59 +08:00
|
|
|
|
2016-09-07 18:28:56 +08:00
|
|
|
module.exports = "alpha";
|
2015-05-17 00:27:59 +08:00
|
|
|
|
2017-03-31 02:25:01 +08:00
|
|
|
/***/ }),
|
2017-06-05 22:12:12 +08:00
|
|
|
/* 2 */
|
|
|
|
|
/*!**************!*\
|
|
|
|
|
!*** ./a.js ***!
|
|
|
|
|
\**************/
|
2019-08-05 19:32:25 +08:00
|
|
|
/*! exports [maybe provided (runtime-defined)] [maybe used (runtime-defined)] */
|
2018-12-19 21:05:17 +08:00
|
|
|
/*! runtime requirements: module */
|
2019-10-09 05:45:47 +08:00
|
|
|
/***/ ((module) => {
|
2015-10-13 22:19:11 +08:00
|
|
|
|
2017-06-05 22:12:12 +08:00
|
|
|
module.exports = "a";
|
2015-10-13 22:19:11 +08:00
|
|
|
|
2017-03-31 02:25:01 +08:00
|
|
|
/***/ }),
|
2017-06-05 22:12:12 +08:00
|
|
|
/* 3 */
|
|
|
|
|
/*!*********************************!*\
|
|
|
|
|
!*** ../node_modules/module.js ***!
|
|
|
|
|
\*********************************/
|
2019-08-05 19:32:25 +08:00
|
|
|
/*! exports [maybe provided (runtime-defined)] [maybe used (runtime-defined)] */
|
2018-12-19 21:05:17 +08:00
|
|
|
/*! runtime requirements: module */
|
2019-10-09 05:45:47 +08:00
|
|
|
/***/ ((module) => {
|
2016-02-04 07:27:47 +08:00
|
|
|
|
2017-06-05 22:12:12 +08:00
|
|
|
module.exports = "module";
|
2016-02-04 07:27:47 +08:00
|
|
|
|
2017-03-31 02:25:01 +08:00
|
|
|
/***/ })
|
2015-05-17 00:27:59 +08:00
|
|
|
/******/ ]);
|
|
|
|
|
```
|
|
|
|
|
|
2018-01-05 04:39:29 +08:00
|
|
|
# dist/alpha-manifest.json
|
2015-05-17 00:27:59 +08:00
|
|
|
|
2019-04-09 02:29:40 +08:00
|
|
|
```javascript
|
2019-10-09 05:45:47 +08:00
|
|
|
{"name":"alpha_ae51ad2645b80ad6a788","content":{"./alpha.js":{"id":1,"buildMeta":{}},"./a.js":{"id":2,"buildMeta":{}},"../node_modules/module.js":{"id":3,"buildMeta":{}}}}
|
2015-05-17 00:27:59 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
# Info
|
|
|
|
|
|
2017-12-14 17:58:03 +08:00
|
|
|
## Unoptimized
|
2015-05-17 00:27:59 +08:00
|
|
|
|
|
|
|
|
```
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2019-10-09 05:45:47 +08:00
|
|
|
Version: webpack 5.0.0-alpha.30
|
2017-11-23 16:47:19 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
2019-10-09 05:45:47 +08:00
|
|
|
MyDll.alpha.js 2.36 KiB {0} [emitted] alpha
|
|
|
|
|
MyDll.beta.js 2.34 KiB {1} [emitted] beta
|
2016-09-07 18:28:56 +08:00
|
|
|
Entrypoint alpha = MyDll.alpha.js
|
|
|
|
|
Entrypoint beta = MyDll.beta.js
|
2018-12-19 21:05:17 +08:00
|
|
|
chunk {0} MyDll.alpha.js (alpha) 84 bytes [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> alpha
|
2018-05-07 18:36:38 +08:00
|
|
|
[0] dll alpha 12 bytes {0} [built]
|
2018-12-19 21:05:17 +08:00
|
|
|
dll entry
|
|
|
|
|
DllPlugin
|
2018-05-07 18:36:38 +08:00
|
|
|
[1] ./alpha.js 25 bytes {0} [built]
|
2018-09-26 05:13:58 +08:00
|
|
|
entry ./alpha [0] dll alpha alpha[0]
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
2018-05-07 18:36:38 +08:00
|
|
|
[2] ./a.js 21 bytes {0} [built]
|
2018-09-26 05:13:58 +08:00
|
|
|
entry ./a [0] dll alpha alpha[1]
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
|
|
|
|
[3] ../node_modules/module.js 26 bytes {0} [built]
|
|
|
|
|
entry module [0] dll alpha alpha[2]
|
|
|
|
|
DllPlugin
|
|
|
|
|
chunk {1} MyDll.beta.js (beta) 80 bytes [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> beta
|
2018-05-07 18:36:38 +08:00
|
|
|
[4] dll beta 12 bytes {1} [built]
|
2018-12-19 21:05:17 +08:00
|
|
|
dll entry
|
|
|
|
|
DllPlugin
|
2018-05-07 18:36:38 +08:00
|
|
|
[5] ./beta.js 24 bytes {1} [built]
|
2018-09-26 05:13:58 +08:00
|
|
|
entry ./beta [4] dll beta beta[0]
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
2018-05-07 18:36:38 +08:00
|
|
|
[6] ./b.js 21 bytes {1} [built]
|
2018-09-26 05:13:58 +08:00
|
|
|
entry ./b [4] dll beta beta[1]
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
2018-05-07 18:36:38 +08:00
|
|
|
[7] ./c.jsx 23 bytes {1} [built]
|
2018-09-26 05:13:58 +08:00
|
|
|
entry ./c [4] dll beta beta[2]
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
2015-05-17 00:27:59 +08:00
|
|
|
```
|
|
|
|
|
|
2017-12-14 17:58:03 +08:00
|
|
|
## Production mode
|
2015-05-17 00:27:59 +08:00
|
|
|
|
|
|
|
|
```
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2019-10-09 05:45:47 +08:00
|
|
|
Version: webpack 5.0.0-alpha.30
|
2018-12-19 21:05:17 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
2019-10-09 05:45:47 +08:00
|
|
|
MyDll.alpha.js 305 bytes {487} [emitted] alpha
|
|
|
|
|
MyDll.beta.js 296 bytes {904} [emitted] beta
|
2016-09-07 18:28:56 +08:00
|
|
|
Entrypoint alpha = MyDll.alpha.js
|
|
|
|
|
Entrypoint beta = MyDll.beta.js
|
2019-05-10 03:34:28 +08:00
|
|
|
chunk {487} MyDll.alpha.js (alpha) 84 bytes [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> alpha
|
2019-05-10 03:34:28 +08:00
|
|
|
[258] dll alpha 12 bytes {487} [built]
|
|
|
|
|
dll entry
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
2019-05-10 03:34:28 +08:00
|
|
|
[443] ../node_modules/module.js 26 bytes {487} [built]
|
|
|
|
|
entry module [258] dll alpha alpha[2]
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
2019-05-10 03:34:28 +08:00
|
|
|
[758] ./alpha.js 25 bytes {487} [built]
|
|
|
|
|
entry ./alpha [258] dll alpha alpha[0]
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
2019-05-10 03:34:28 +08:00
|
|
|
[847] ./a.js 21 bytes {487} [built]
|
|
|
|
|
entry ./a [258] dll alpha alpha[1]
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
2019-05-10 03:34:28 +08:00
|
|
|
chunk {904} MyDll.beta.js (beta) 80 bytes [entry] [rendered]
|
2018-09-25 23:08:35 +08:00
|
|
|
> beta
|
2019-05-10 03:34:28 +08:00
|
|
|
[15] dll beta 12 bytes {904} [built]
|
2018-12-19 21:05:17 +08:00
|
|
|
dll entry
|
|
|
|
|
DllPlugin
|
2019-05-10 03:34:28 +08:00
|
|
|
[60] ./c.jsx 23 bytes {904} [built]
|
|
|
|
|
entry ./c [15] dll beta beta[2]
|
|
|
|
|
DllPlugin
|
|
|
|
|
[97] ./beta.js 24 bytes {904} [built]
|
|
|
|
|
entry ./beta [15] dll beta beta[0]
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
2019-05-10 03:34:28 +08:00
|
|
|
[996] ./b.js 21 bytes {904} [built]
|
|
|
|
|
entry ./b [15] dll beta beta[1]
|
2018-12-19 21:05:17 +08:00
|
|
|
DllPlugin
|
2017-04-20 03:45:42 +08:00
|
|
|
```
|