2021-06-23 19:58:40 +08:00
|
|
|
# example.js
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
import { resetCounter, print } from "./methods";
|
|
|
|
|
|
|
|
setTimeout(async () => {
|
|
|
|
const counter = await import("./counter");
|
|
|
|
print(counter.value);
|
|
|
|
counter.increment();
|
|
|
|
counter.increment();
|
|
|
|
counter.increment();
|
|
|
|
print(counter.value);
|
|
|
|
await resetCounter();
|
|
|
|
print(counter.value);
|
|
|
|
}, 100);
|
|
|
|
```
|
|
|
|
|
|
|
|
# methods.js
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
export const resetCounter = async () => {
|
|
|
|
(await import("./counter")).reset();
|
|
|
|
};
|
|
|
|
|
|
|
|
export const print = value => console.log(value);
|
|
|
|
```
|
|
|
|
|
|
|
|
# counter.js
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
export let value = 0;
|
|
|
|
export function increment() {
|
|
|
|
value++;
|
|
|
|
}
|
|
|
|
export function decrement() {
|
|
|
|
value--;
|
|
|
|
}
|
|
|
|
export function reset() {
|
|
|
|
value = 0;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
# dist/output.js
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
/******/ var __webpack_modules__ = ({});
|
|
|
|
```
|
|
|
|
|
|
|
|
<details><summary><code>/* webpack runtime code */</code></summary>
|
|
|
|
|
|
|
|
``` js
|
|
|
|
/************************************************************************/
|
|
|
|
/******/ // The module cache
|
|
|
|
/******/ var __webpack_module_cache__ = {};
|
|
|
|
/******/
|
|
|
|
/******/ // The require function
|
|
|
|
/******/ function __webpack_require__(moduleId) {
|
|
|
|
/******/ // Check if module is in cache
|
|
|
|
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
|
|
/******/ if (cachedModule !== undefined) {
|
|
|
|
/******/ return cachedModule.exports;
|
|
|
|
/******/ }
|
|
|
|
/******/ // Create a new module (and put it into the cache)
|
|
|
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
|
|
/******/ // no module.id needed
|
|
|
|
/******/ // no module.loaded needed
|
|
|
|
/******/ exports: {}
|
|
|
|
/******/ };
|
|
|
|
/******/
|
|
|
|
/******/ // Execute the module function
|
|
|
|
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
|
|
/******/
|
|
|
|
/******/ // Return the exports of the module
|
|
|
|
/******/ return module.exports;
|
|
|
|
/******/ }
|
|
|
|
/******/
|
|
|
|
/******/ // expose the modules object (__webpack_modules__)
|
|
|
|
/******/ __webpack_require__.m = __webpack_modules__;
|
|
|
|
/******/
|
|
|
|
/************************************************************************/
|
|
|
|
/******/ /* webpack/runtime/define property getters */
|
|
|
|
/******/ (() => {
|
|
|
|
/******/ // define getter functions for harmony exports
|
|
|
|
/******/ __webpack_require__.d = (exports, definition) => {
|
|
|
|
/******/ for(var key in definition) {
|
|
|
|
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
|
|
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
|
|
/******/ }
|
|
|
|
/******/ }
|
|
|
|
/******/ };
|
|
|
|
/******/ })();
|
|
|
|
/******/
|
|
|
|
/******/ /* webpack/runtime/ensure chunk */
|
|
|
|
/******/ (() => {
|
|
|
|
/******/ __webpack_require__.f = {};
|
|
|
|
/******/ // This file contains only the entry chunk.
|
|
|
|
/******/ // The chunk loading function for additional chunks
|
|
|
|
/******/ __webpack_require__.e = (chunkId) => {
|
|
|
|
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
|
|
|
|
/******/ __webpack_require__.f[key](chunkId, promises);
|
|
|
|
/******/ return promises;
|
|
|
|
/******/ }, []));
|
|
|
|
/******/ };
|
|
|
|
/******/ })();
|
|
|
|
/******/
|
|
|
|
/******/ /* webpack/runtime/get javascript chunk filename */
|
|
|
|
/******/ (() => {
|
|
|
|
/******/ // This function allow to reference async chunks
|
|
|
|
/******/ __webpack_require__.u = (chunkId) => {
|
|
|
|
/******/ // return url for filenames based on template
|
|
|
|
/******/ return "" + chunkId + ".output.js";
|
|
|
|
/******/ };
|
|
|
|
/******/ })();
|
|
|
|
/******/
|
|
|
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
|
|
/******/ (() => {
|
|
|
|
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
|
|
/******/ })();
|
|
|
|
/******/
|
|
|
|
/******/ /* webpack/runtime/make namespace object */
|
|
|
|
/******/ (() => {
|
|
|
|
/******/ // define __esModule on exports
|
|
|
|
/******/ __webpack_require__.r = (exports) => {
|
|
|
|
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
|
|
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
/******/ }
|
|
|
|
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
/******/ };
|
|
|
|
/******/ })();
|
|
|
|
/******/
|
|
|
|
/******/ /* webpack/runtime/import chunk loading */
|
|
|
|
/******/ (() => {
|
|
|
|
/******/ // no baseURI
|
|
|
|
/******/
|
|
|
|
/******/ // object to store loaded and loading chunks
|
|
|
|
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
|
|
|
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
|
|
|
|
/******/ var installedChunks = {
|
|
|
|
/******/ 0: 0
|
|
|
|
/******/ };
|
|
|
|
/******/
|
2021-08-20 14:12:50 +08:00
|
|
|
/******/ var installChunk = (data) => {
|
|
|
|
/******/ var {ids, modules, runtime} = data;
|
|
|
|
/******/ // add "modules" to the modules object,
|
|
|
|
/******/ // then flag all "ids" as loaded and fire callback
|
|
|
|
/******/ var moduleId, chunkId, i = 0;
|
|
|
|
/******/ for(moduleId in modules) {
|
|
|
|
/******/ if(__webpack_require__.o(modules, moduleId)) {
|
|
|
|
/******/ __webpack_require__.m[moduleId] = modules[moduleId];
|
|
|
|
/******/ }
|
|
|
|
/******/ }
|
|
|
|
/******/ if(runtime) runtime(__webpack_require__);
|
|
|
|
/******/ for(;i < ids.length; i++) {
|
|
|
|
/******/ chunkId = ids[i];
|
|
|
|
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
|
|
|
|
/******/ installedChunks[chunkId][0]();
|
|
|
|
/******/ }
|
|
|
|
/******/ installedChunks[ids[i]] = 0;
|
|
|
|
/******/ }
|
|
|
|
/******/
|
|
|
|
/******/ }
|
|
|
|
/******/
|
2021-06-23 19:58:40 +08:00
|
|
|
/******/ __webpack_require__.f.j = (chunkId, promises) => {
|
2021-06-28 18:30:25 +08:00
|
|
|
/******/ // import() chunk loading for javascript
|
2021-06-23 19:58:40 +08:00
|
|
|
/******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
|
|
|
|
/******/ if(installedChunkData !== 0) { // 0 means "already installed".
|
|
|
|
/******/
|
|
|
|
/******/ // a Promise means "currently loading".
|
|
|
|
/******/ if(installedChunkData) {
|
|
|
|
/******/ promises.push(installedChunkData[1]);
|
|
|
|
/******/ } else {
|
|
|
|
/******/ if(true) { // all chunks have JS
|
|
|
|
/******/ // setup Promise in chunk cache
|
2021-08-20 14:12:50 +08:00
|
|
|
/******/ var promise = import("./" + __webpack_require__.u(chunkId)).then(installChunk, (e) => {
|
2021-06-23 19:58:40 +08:00
|
|
|
/******/ if(installedChunks[chunkId] !== 0) installedChunks[chunkId] = undefined;
|
|
|
|
/******/ throw e;
|
|
|
|
/******/ });
|
|
|
|
/******/ var promise = Promise.race([promise, new Promise((resolve) => (installedChunkData = installedChunks[chunkId] = [resolve]))])
|
|
|
|
/******/ promises.push(installedChunkData[1] = promise);
|
|
|
|
/******/ } else installedChunks[chunkId] = 0;
|
|
|
|
/******/ }
|
|
|
|
/******/ }
|
|
|
|
/******/ };
|
|
|
|
/******/
|
2021-08-20 14:12:50 +08:00
|
|
|
/******/ // no external install chunk
|
|
|
|
/******/
|
2021-06-23 19:58:40 +08:00
|
|
|
/******/ // no on chunks loaded
|
|
|
|
/******/ })();
|
|
|
|
/******/
|
|
|
|
/************************************************************************/
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
``` js
|
|
|
|
var __webpack_exports__ = {};
|
|
|
|
/*!********************************!*\
|
|
|
|
!*** ./example.js + 1 modules ***!
|
|
|
|
\********************************/
|
|
|
|
/*! namespace exports */
|
|
|
|
/*! runtime requirements: __webpack_require__.e, __webpack_require__, __webpack_require__.* */
|
|
|
|
|
|
|
|
;// CONCATENATED MODULE: ./methods.js
|
|
|
|
const resetCounter = async () => {
|
|
|
|
(await __webpack_require__.e(/*! import() */ 1).then(__webpack_require__.bind(__webpack_require__, /*! ./counter */ 1))).reset();
|
|
|
|
};
|
|
|
|
|
|
|
|
const print = value => console.log(value);
|
|
|
|
|
|
|
|
;// CONCATENATED MODULE: ./example.js
|
|
|
|
|
|
|
|
|
|
|
|
setTimeout(async () => {
|
|
|
|
const counter = await __webpack_require__.e(/*! import() */ 1).then(__webpack_require__.bind(__webpack_require__, /*! ./counter */ 1));
|
|
|
|
print(counter.value);
|
|
|
|
counter.increment();
|
|
|
|
counter.increment();
|
|
|
|
counter.increment();
|
|
|
|
print(counter.value);
|
|
|
|
await resetCounter();
|
|
|
|
print(counter.value);
|
|
|
|
}, 100);
|
|
|
|
```
|
|
|
|
|
|
|
|
# dist/output.js (production)
|
|
|
|
|
|
|
|
```javascript
|
2021-08-20 14:12:50 +08:00
|
|
|
var e,o,t={},r={};function n(e){var o=r[e];if(void 0!==o)return o.exports;var i=r[e]={exports:{}};return t[e](i,i.exports,n),i.exports}n.m=t,n.d=(e,o)=>{for(var t in o)n.o(o,t)&&!n.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:o[t]})},n.f={},n.e=e=>Promise.all(Object.keys(n.f).reduce(((o,t)=>(n.f[t](e,o),o)),[])),n.u=e=>e+".output.js",n.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},e={179:0},o=o=>{var t,r,{ids:i,modules:a,runtime:s}=o,u=0;for(t in a)n.o(a,t)&&(n.m[t]=a[t]);for(s&&s(n);u<i.length;u++)r=i[u],n.o(e,r)&&e[r]&&e[r][0](),e[i[u]]=0},n.f.j=(t,r)=>{var i=n.o(e,t)?e[t]:void 0;if(0!==i)if(i)r.push(i[1]);else{var a=import("./"+n.u(t)).then(o,(o=>{throw 0!==e[t]&&(e[t]=void 0),o}));a=Promise.race([a,new Promise((o=>i=e[t]=[o]))]),r.push(i[1]=a)}};const i=e=>console.log(e);setTimeout((async()=>{const e=await n.e(946).then(n.bind(n,946));i(e.value),e.increment(),e.increment(),e.increment(),i(e.value),await(async()=>{(await n.e(946).then(n.bind(n,946))).reset()})(),i(e.value)}),100);
|
2021-06-23 19:58:40 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
# Info
|
|
|
|
|
|
|
|
## Unoptimized
|
|
|
|
|
|
|
|
```
|
2021-08-20 14:12:50 +08:00
|
|
|
asset output.js 6.34 KiB [emitted] [javascript module] (name: main)
|
|
|
|
asset 1.output.js 1.35 KiB [emitted] [javascript module]
|
|
|
|
chunk (runtime: main) output.js (main) 420 bytes (javascript) 2.87 KiB (runtime) [entry] [rendered]
|
2021-06-23 19:58:40 +08:00
|
|
|
> ./example.js main
|
2021-08-20 14:12:50 +08:00
|
|
|
runtime modules 2.87 KiB 6 modules
|
2021-06-23 19:58:40 +08:00
|
|
|
./example.js + 1 modules 420 bytes [built] [code generated]
|
|
|
|
[no exports]
|
|
|
|
[no exports used]
|
|
|
|
entry ./example.js main
|
|
|
|
used as library export
|
|
|
|
chunk (runtime: main) 1.output.js 146 bytes [rendered]
|
|
|
|
> ./counter ./methods.js 2:8-27
|
|
|
|
> ./counter ./example.js 4:23-42
|
|
|
|
./counter.js 146 bytes [built] [code generated]
|
|
|
|
[exports: decrement, increment, reset, value]
|
|
|
|
import() ./counter ./example.js + 1 modules ./example.js 4:23-42
|
|
|
|
import() ./counter ./example.js + 1 modules ./methods.js 2:8-27
|
2023-04-08 06:23:22 +08:00
|
|
|
webpack 5.78.0 compiled successfully
|
2021-06-23 19:58:40 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## Production mode
|
|
|
|
|
|
|
|
```
|
|
|
|
asset output.js 1.15 KiB [emitted] [javascript module] [minimized] (name: main)
|
|
|
|
asset 946.output.js 213 bytes [emitted] [javascript module] [minimized]
|
2021-08-20 14:12:50 +08:00
|
|
|
chunk (runtime: main) output.js (main) 420 bytes (javascript) 2.87 KiB (runtime) [entry] [rendered]
|
2021-06-23 19:58:40 +08:00
|
|
|
> ./example.js main
|
2021-08-20 14:12:50 +08:00
|
|
|
runtime modules 2.87 KiB 6 modules
|
2021-06-23 19:58:40 +08:00
|
|
|
./example.js + 1 modules 420 bytes [built] [code generated]
|
|
|
|
[no exports]
|
|
|
|
[no exports used]
|
|
|
|
entry ./example.js main
|
|
|
|
used as library export
|
|
|
|
chunk (runtime: main) 946.output.js 146 bytes [rendered]
|
|
|
|
> ./counter ./methods.js 2:8-27
|
|
|
|
> ./counter ./example.js 4:23-42
|
|
|
|
./counter.js 146 bytes [built] [code generated]
|
|
|
|
[exports: decrement, increment, reset, value]
|
|
|
|
import() ./counter ./example.js + 1 modules ./example.js 4:23-42
|
|
|
|
import() ./counter ./example.js + 1 modules ./methods.js 2:8-27
|
2023-04-08 06:23:22 +08:00
|
|
|
webpack 5.78.0 compiled successfully
|
2021-06-23 19:58:40 +08:00
|
|
|
```
|