2015-01-12 06:15:11 +08:00
|
|
|
# example.js
|
|
|
|
|
2019-04-09 02:29:40 +08:00
|
|
|
```javascript
|
2015-01-12 06:15:11 +08:00
|
|
|
require(["./a", "./b", "./c"], function(a, b, c) {});
|
|
|
|
|
|
|
|
require.ensure(["./a"], function(require) {
|
|
|
|
require("./b");
|
|
|
|
require("./d");
|
|
|
|
});
|
|
|
|
|
|
|
|
require.ensure(["./a", "./e"], function(require) {
|
|
|
|
require("./a");
|
|
|
|
require.ensure(["./b"], function(require) {
|
|
|
|
require("./f");
|
|
|
|
});
|
|
|
|
require.ensure(["./b"], function(require) {
|
|
|
|
require("./g");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
# webpack.config.js
|
|
|
|
|
2019-04-09 02:29:40 +08:00
|
|
|
```javascript
|
2015-01-12 06:15:11 +08:00
|
|
|
module.exports = {
|
2017-12-14 17:58:03 +08:00
|
|
|
// mode: "development || "production",
|
|
|
|
optimization: {
|
2018-01-20 00:06:59 +08:00
|
|
|
splitChunks: {
|
|
|
|
minSize: 0 // This example is too small
|
|
|
|
},
|
2018-12-19 21:05:17 +08:00
|
|
|
chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only)
|
2017-12-14 17:58:03 +08:00
|
|
|
}
|
2017-03-31 02:25:01 +08:00
|
|
|
};
|
2015-01-12 06:15:11 +08:00
|
|
|
```
|
|
|
|
|
2018-01-05 04:39:29 +08:00
|
|
|
# dist/output.js
|
2015-01-12 06:15:11 +08:00
|
|
|
|
2019-04-09 02:29:40 +08:00
|
|
|
```javascript
|
2019-10-11 05:11:05 +08:00
|
|
|
/******/ (() => { // webpackBootstrap
|
|
|
|
/******/ var __webpack_modules__ = ({});
|
2019-11-19 21:10:28 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
<details><summary><code>/* webpack runtime code */</code></summary>
|
|
|
|
|
|
|
|
``` js
|
2019-10-11 05:11:05 +08:00
|
|
|
/************************************************************************/
|
2015-01-12 06:15:11 +08:00
|
|
|
/******/ // The module cache
|
2019-10-11 05:11:05 +08:00
|
|
|
/******/ var __webpack_module_cache__ = {};
|
|
|
|
/******/
|
2015-01-12 06:15:11 +08:00
|
|
|
/******/ // The require function
|
|
|
|
/******/ function __webpack_require__(moduleId) {
|
|
|
|
/******/ // Check if module is in cache
|
2019-10-11 05:11:05 +08:00
|
|
|
/******/ if(__webpack_module_cache__[moduleId]) {
|
|
|
|
/******/ return __webpack_module_cache__[moduleId].exports;
|
2017-05-23 04:45:18 +08:00
|
|
|
/******/ }
|
2015-01-12 06:15:11 +08:00
|
|
|
/******/ // Create a new module (and put it into the cache)
|
2019-10-11 05:11:05 +08:00
|
|
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ // no module.id needed
|
|
|
|
/******/ // no module.loaded needed
|
2016-06-06 02:51:44 +08:00
|
|
|
/******/ exports: {}
|
2015-01-12 06:15:11 +08:00
|
|
|
/******/ };
|
2019-10-11 05:11:05 +08:00
|
|
|
/******/
|
2015-01-12 06:15:11 +08:00
|
|
|
/******/ // Execute the module function
|
2019-10-11 05:11:05 +08:00
|
|
|
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
|
|
/******/
|
2015-01-12 06:15:11 +08:00
|
|
|
/******/ // Return the exports of the module
|
|
|
|
/******/ return module.exports;
|
|
|
|
/******/ }
|
2019-10-11 05:11:05 +08:00
|
|
|
/******/
|
2015-01-12 06:15:11 +08:00
|
|
|
/******/ // expose the modules object (__webpack_modules__)
|
2019-10-11 05:11:05 +08:00
|
|
|
/******/ __webpack_require__.m = __webpack_modules__;
|
|
|
|
/******/
|
2015-01-12 06:15:11 +08:00
|
|
|
/************************************************************************/
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ /* webpack/runtime/ensure chunk */
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ (() => {
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ __webpack_require__.f = {};
|
|
|
|
/******/ // This file contains only the entry chunk.
|
|
|
|
/******/ // The chunk loading function for additional chunks
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ __webpack_require__.e = (chunkId) => {
|
|
|
|
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
|
2019-08-05 19:32:25 +08:00
|
|
|
/******/ __webpack_require__.f[key](chunkId, promises);
|
|
|
|
/******/ return promises;
|
|
|
|
/******/ }, []));
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ };
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ })();
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/
|
|
|
|
/******/ /* webpack/runtime/get javascript chunk filename */
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ (() => {
|
2019-05-10 03:34:28 +08:00
|
|
|
/******/ // This function allow to reference async chunks
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ __webpack_require__.u = (chunkId) => {
|
2019-02-05 01:52:39 +08:00
|
|
|
/******/ // return url for filenames based on template
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ return "" + chunkId + ".output.js";
|
|
|
|
/******/ };
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ })();
|
|
|
|
/******/
|
|
|
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
|
|
/******/ (() => {
|
|
|
|
/******/ __webpack_require__.o = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop)
|
|
|
|
/******/ })();
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/
|
2019-11-15 07:06:30 +08:00
|
|
|
/******/ /* webpack/runtime/publicPath */
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ (() => {
|
2019-11-15 07:06:30 +08:00
|
|
|
/******/ __webpack_require__.p = "dist/";
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ })();
|
2019-11-15 07:06:30 +08:00
|
|
|
/******/
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ /* webpack/runtime/jsonp chunk loading */
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ (() => {
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ // object to store loaded and loading chunks
|
|
|
|
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
|
|
|
/******/ // Promise = chunk loading, 0 = chunk loaded
|
|
|
|
/******/ var installedChunks = {
|
2019-05-10 03:34:28 +08:00
|
|
|
/******/ 179: 0
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ };
|
|
|
|
/******/
|
|
|
|
/******/
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ __webpack_require__.f.j = (chunkId, promises) => {
|
|
|
|
/******/ // JSONP chunk loading for javascript
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ if(installedChunkData !== 0) { // 0 means "already installed".
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ // a Promise means "currently loading".
|
|
|
|
/******/ if(installedChunkData) {
|
|
|
|
/******/ promises.push(installedChunkData[2]);
|
|
|
|
/******/ } else {
|
|
|
|
/******/ if(true) { // all chunks have JS
|
|
|
|
/******/ // setup Promise in chunk cache
|
|
|
|
/******/ var promise = new Promise((resolve, reject) => {
|
|
|
|
/******/ installedChunkData = installedChunks[chunkId] = [resolve, reject];
|
|
|
|
/******/ });
|
|
|
|
/******/ promises.push(installedChunkData[2] = promise);
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ // start chunk loading
|
|
|
|
/******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
|
|
|
|
/******/ var loadingEnded = () => {
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ if(__webpack_require__.o(installedChunks, chunkId)) {
|
2019-11-15 07:06:30 +08:00
|
|
|
/******/ installedChunkData = installedChunks[chunkId];
|
|
|
|
/******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
|
|
|
|
/******/ if(installedChunkData) return installedChunkData[1];
|
|
|
|
/******/ }
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ };
|
|
|
|
/******/ var script = document.createElement('script');
|
|
|
|
/******/ var onScriptComplete;
|
2019-08-05 19:32:25 +08:00
|
|
|
/******/
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ script.charset = 'utf-8';
|
|
|
|
/******/ script.timeout = 120;
|
|
|
|
/******/ if (__webpack_require__.nc) {
|
|
|
|
/******/ script.setAttribute("nonce", __webpack_require__.nc);
|
2019-08-05 19:32:25 +08:00
|
|
|
/******/ }
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ script.src = url;
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ // create error before stack unwound to get useful stacktrace later
|
|
|
|
/******/ var error = new Error();
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ onScriptComplete = (event) => {
|
|
|
|
/******/ onScriptComplete = () => {
|
|
|
|
/******/
|
|
|
|
/******/ }
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ // avoid mem leaks in IE.
|
|
|
|
/******/ script.onerror = script.onload = null;
|
|
|
|
/******/ clearTimeout(timeout);
|
|
|
|
/******/ var reportError = loadingEnded();
|
|
|
|
/******/ if(reportError) {
|
|
|
|
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
|
|
|
|
/******/ var realSrc = event && event.target && event.target.src;
|
|
|
|
/******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
|
|
|
|
/******/ error.name = 'ChunkLoadError';
|
|
|
|
/******/ error.type = errorType;
|
|
|
|
/******/ error.request = realSrc;
|
|
|
|
/******/ reportError(error);
|
|
|
|
/******/ }
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ }
|
|
|
|
/******/ ;
|
|
|
|
/******/ var timeout = setTimeout(() => {
|
|
|
|
/******/ onScriptComplete({ type: 'timeout', target: script })
|
2019-10-09 05:45:47 +08:00
|
|
|
/******/ }, 120000);
|
|
|
|
/******/ script.onerror = script.onload = onScriptComplete;
|
|
|
|
/******/ document.head.appendChild(script);
|
|
|
|
/******/ } else installedChunks[chunkId] = 0;
|
|
|
|
/******/ }
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ }
|
|
|
|
/******/ };
|
|
|
|
/******/
|
|
|
|
/******/ // no prefetching
|
|
|
|
/******/
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ // no preloaded
|
|
|
|
/******/
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ // no HMR
|
|
|
|
/******/
|
|
|
|
/******/ // no HMR manifest
|
|
|
|
/******/
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ // no deferred startup
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/
|
|
|
|
/******/ // install a JSONP callback for chunk loading
|
|
|
|
/******/ function webpackJsonpCallback(data) {
|
|
|
|
/******/ var chunkIds = data[0];
|
|
|
|
/******/ var moreModules = data[1];
|
|
|
|
/******/
|
|
|
|
/******/ var runtime = data[3];
|
|
|
|
/******/ // add "moreModules" to the modules object,
|
|
|
|
/******/ // then flag all "chunkIds" as loaded and fire callback
|
|
|
|
/******/ var moduleId, chunkId, i = 0, resolves = [];
|
|
|
|
/******/ for(;i < chunkIds.length; i++) {
|
|
|
|
/******/ chunkId = chunkIds[i];
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ resolves.push(installedChunks[chunkId][0]);
|
|
|
|
/******/ }
|
|
|
|
/******/ installedChunks[chunkId] = 0;
|
|
|
|
/******/ }
|
|
|
|
/******/ for(moduleId in moreModules) {
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
|
|
|
/******/ }
|
|
|
|
/******/ }
|
|
|
|
/******/ if(runtime) runtime(__webpack_require__);
|
|
|
|
/******/ if(parentJsonpFunction) parentJsonpFunction(data);
|
|
|
|
/******/ while(resolves.length) {
|
|
|
|
/******/ resolves.shift()();
|
|
|
|
/******/ }
|
|
|
|
/******/
|
|
|
|
/******/ };
|
|
|
|
/******/
|
|
|
|
/******/ var jsonpArray = window["webpackJsonp"] = window["webpackJsonp"] || [];
|
|
|
|
/******/ var oldJsonpFunction = jsonpArray.push.bind(jsonpArray);
|
|
|
|
/******/ jsonpArray.push = webpackJsonpCallback;
|
|
|
|
/******/ var parentJsonpFunction = oldJsonpFunction;
|
2020-05-21 05:26:51 +08:00
|
|
|
/******/ })();
|
2018-12-19 21:05:17 +08:00
|
|
|
/******/
|
2019-10-11 05:11:05 +08:00
|
|
|
/************************************************************************/
|
2019-11-19 21:10:28 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
``` js
|
2019-10-11 05:11:05 +08:00
|
|
|
/*!********************!*\
|
|
|
|
!*** ./example.js ***!
|
|
|
|
\********************/
|
2020-05-21 05:26:51 +08:00
|
|
|
/*! unknown exports (runtime-defined) */
|
|
|
|
/*! exports [maybe provided (runtime-defined)] [unused] */
|
2019-11-15 07:06:30 +08:00
|
|
|
/*! runtime requirements: __webpack_require__, __webpack_require__.e, __webpack_require__.oe, __webpack_require__.* */
|
2019-10-11 05:11:05 +08:00
|
|
|
Promise.all(/*! AMD require */[__webpack_require__.e(996), __webpack_require__.e(847), __webpack_require__.e(460)]).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__(/*! ./a */ 1), __webpack_require__(/*! ./b */ 2), __webpack_require__(/*! ./c */ 3)]; (function(a, b, c) {}).apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__);}).catch(__webpack_require__.oe);
|
|
|
|
|
|
|
|
Promise.all(/*! require.ensure */[__webpack_require__.e(996), __webpack_require__.e(847), __webpack_require__.e(767)]).then((function(require) {
|
|
|
|
__webpack_require__(/*! ./b */ 2);
|
|
|
|
__webpack_require__(/*! ./d */ 4);
|
|
|
|
}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);
|
2015-01-12 06:15:11 +08:00
|
|
|
|
2019-10-11 05:11:05 +08:00
|
|
|
Promise.all(/*! require.ensure */[__webpack_require__.e(847), __webpack_require__.e(390)]).then((function(require) {
|
|
|
|
__webpack_require__(/*! ./a */ 1);
|
|
|
|
Promise.all(/*! require.ensure */[__webpack_require__.e(996), __webpack_require__.e(568)]).then((function(require) {
|
|
|
|
__webpack_require__(/*! ./f */ 6);
|
|
|
|
}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);
|
|
|
|
Promise.all(/*! require.ensure */[__webpack_require__.e(996), __webpack_require__.e(785)]).then((function(require) {
|
|
|
|
__webpack_require__(/*! ./g */ 7);
|
|
|
|
}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);
|
|
|
|
}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);
|
2018-12-19 21:05:17 +08:00
|
|
|
|
2019-10-11 05:11:05 +08:00
|
|
|
/******/ })()
|
|
|
|
;
|
|
|
|
```
|
2018-12-19 21:05:17 +08:00
|
|
|
|
2015-01-12 06:15:11 +08:00
|
|
|
# Info
|
|
|
|
|
2017-12-14 17:58:03 +08:00
|
|
|
## Unoptimized
|
2015-01-12 06:15:11 +08:00
|
|
|
|
|
|
|
```
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2020-05-21 05:26:51 +08:00
|
|
|
Version: webpack 5.0.0-beta.16
|
2019-10-11 05:11:05 +08:00
|
|
|
Asset Size
|
2020-05-21 05:26:51 +08:00
|
|
|
390.output.js 356 bytes [emitted]
|
|
|
|
460.output.js 356 bytes [emitted]
|
|
|
|
568.output.js 356 bytes [emitted]
|
|
|
|
767.output.js 356 bytes [emitted]
|
|
|
|
785.output.js 356 bytes [emitted]
|
|
|
|
847.output.js 362 bytes [emitted]
|
|
|
|
996.output.js 356 bytes [emitted]
|
|
|
|
output.js 8.94 KiB [emitted] [name: main]
|
2016-09-07 18:28:56 +08:00
|
|
|
Entrypoint main = output.js
|
2020-05-21 05:26:51 +08:00
|
|
|
chunk output.js (main) 346 bytes (javascript) 4.19 KiB (runtime) [entry] [rendered]
|
2019-01-25 20:15:22 +08:00
|
|
|
> ./example.js main
|
2019-10-11 05:11:05 +08:00
|
|
|
./example.js 346 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
[no exports used]
|
2019-05-10 03:34:28 +08:00
|
|
|
entry ./example.js main
|
2020-05-21 05:26:51 +08:00
|
|
|
+ 5 hidden chunk modules
|
2019-10-11 05:11:05 +08:00
|
|
|
chunk 390.output.js 21 bytes [rendered]
|
|
|
|
> ./example.js 8:0-16:2
|
|
|
|
./e.js 21 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./e.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
require.ensure item ./e ./example.js 8:0-16:2
|
|
|
|
chunk 460.output.js 21 bytes [rendered]
|
|
|
|
> ./a ./b ./c ./example.js 1:0-52
|
|
|
|
./c.js 21 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./c.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
amd require ./c ./example.js 1:0-52
|
|
|
|
chunk 568.output.js 21 bytes [rendered]
|
|
|
|
> ./example.js 10:1-12:3
|
|
|
|
./f.js 21 bytes [built]
|
|
|
|
cjs require ./f ./example.js 11:2-16
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./f.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
chunk 767.output.js 21 bytes [rendered]
|
|
|
|
> ./example.js 3:0-6:2
|
|
|
|
./d.js 21 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./d.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
cjs require ./d ./example.js 5:1-15
|
|
|
|
chunk 785.output.js 21 bytes [rendered]
|
|
|
|
> ./example.js 13:1-15:3
|
|
|
|
./g.js 21 bytes [built]
|
|
|
|
cjs require ./g ./example.js 14:2-16
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./g.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
chunk 847.output.js 21 bytes [rendered] split chunk (cache group: default)
|
|
|
|
> ./a ./b ./c ./example.js 1:0-52
|
|
|
|
> ./example.js 3:0-6:2
|
|
|
|
> ./example.js 8:0-16:2
|
|
|
|
./a.js 21 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./a.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
amd require ./a ./example.js 1:0-52
|
|
|
|
require.ensure item ./a ./example.js 3:0-6:2
|
|
|
|
require.ensure item ./a ./example.js 8:0-16:2
|
|
|
|
cjs require ./a ./example.js 9:1-15
|
|
|
|
chunk 996.output.js 21 bytes [rendered] split chunk (cache group: default)
|
|
|
|
> ./example.js 10:1-12:3
|
|
|
|
> ./example.js 13:1-15:3
|
|
|
|
> ./a ./b ./c ./example.js 1:0-52
|
|
|
|
> ./example.js 3:0-6:2
|
|
|
|
./b.js 21 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./b.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
amd require ./b ./example.js 1:0-52
|
|
|
|
cjs require ./b ./example.js 4:1-15
|
|
|
|
require.ensure item ./b ./example.js 10:1-12:3
|
|
|
|
require.ensure item ./b ./example.js 13:1-15:3
|
2015-01-12 06:15:11 +08:00
|
|
|
```
|
|
|
|
|
2017-12-14 17:58:03 +08:00
|
|
|
## Production mode
|
2015-01-12 06:15:11 +08:00
|
|
|
|
|
|
|
```
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2020-05-21 05:26:51 +08:00
|
|
|
Version: webpack 5.0.0-beta.16
|
2019-10-11 05:11:05 +08:00
|
|
|
Asset Size
|
|
|
|
390.output.js 85 bytes [emitted]
|
|
|
|
460.output.js 85 bytes [emitted]
|
|
|
|
568.output.js 85 bytes [emitted]
|
|
|
|
767.output.js 85 bytes [emitted]
|
|
|
|
785.output.js 85 bytes [emitted]
|
|
|
|
847.output.js 85 bytes [emitted]
|
|
|
|
996.output.js 85 bytes [emitted]
|
2020-05-21 05:26:51 +08:00
|
|
|
output.js 1.74 KiB [emitted] [name: main]
|
2016-09-07 18:28:56 +08:00
|
|
|
Entrypoint main = output.js
|
2020-05-21 05:26:51 +08:00
|
|
|
chunk output.js (main) 346 bytes (javascript) 4.19 KiB (runtime) [entry] [rendered]
|
2019-01-25 20:15:22 +08:00
|
|
|
> ./example.js main
|
2019-10-11 05:11:05 +08:00
|
|
|
./example.js 346 bytes [built]
|
|
|
|
[no exports used]
|
|
|
|
entry ./example.js main
|
2020-05-21 05:26:51 +08:00
|
|
|
+ 5 hidden chunk modules
|
2019-10-11 05:11:05 +08:00
|
|
|
chunk 390.output.js 21 bytes [rendered]
|
|
|
|
> ./example.js 8:0-16:2
|
|
|
|
./e.js 21 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./e.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
require.ensure item ./e ./example.js 8:0-16:2
|
|
|
|
chunk 460.output.js 21 bytes [rendered]
|
|
|
|
> ./a ./b ./c ./example.js 1:0-52
|
|
|
|
./c.js 21 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./c.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
amd require ./c ./example.js 1:0-52
|
|
|
|
chunk 568.output.js 21 bytes [rendered]
|
|
|
|
> ./example.js 10:1-12:3
|
|
|
|
./f.js 21 bytes [built]
|
|
|
|
cjs require ./f ./example.js 11:2-16
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./f.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
chunk 767.output.js 21 bytes [rendered]
|
|
|
|
> ./example.js 3:0-6:2
|
|
|
|
./d.js 21 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./d.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
cjs require ./d ./example.js 5:1-15
|
|
|
|
chunk 785.output.js 21 bytes [rendered]
|
|
|
|
> ./example.js 13:1-15:3
|
|
|
|
./g.js 21 bytes [built]
|
|
|
|
cjs require ./g ./example.js 14:2-16
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./g.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
chunk 847.output.js 21 bytes [rendered] split chunk (cache group: default)
|
|
|
|
> ./a ./b ./c ./example.js 1:0-52
|
|
|
|
> ./example.js 3:0-6:2
|
|
|
|
> ./example.js 8:0-16:2
|
|
|
|
./a.js 21 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./a.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
amd require ./a ./example.js 1:0-52
|
|
|
|
require.ensure item ./a ./example.js 3:0-6:2
|
|
|
|
require.ensure item ./a ./example.js 8:0-16:2
|
|
|
|
cjs require ./a ./example.js 9:1-15
|
|
|
|
chunk 996.output.js 21 bytes [rendered] split chunk (cache group: default)
|
|
|
|
> ./example.js 10:1-12:3
|
|
|
|
> ./example.js 13:1-15:3
|
|
|
|
> ./a ./b ./c ./example.js 1:0-52
|
|
|
|
> ./example.js 3:0-6:2
|
|
|
|
./b.js 21 bytes [built]
|
2020-05-21 05:26:51 +08:00
|
|
|
cjs self exports reference ./b.js 1:0-14
|
2019-10-11 05:11:05 +08:00
|
|
|
amd require ./b ./example.js 1:0-52
|
|
|
|
cjs require ./b ./example.js 4:1-15
|
|
|
|
require.ensure item ./b ./example.js 10:1-12:3
|
|
|
|
require.ensure item ./b ./example.js 13:1-15:3
|
2015-01-12 06:15:11 +08:00
|
|
|
```
|