webpack/examples/two-explicit-vendor-chunks/README.md

10 KiB

webpack.config.js

var path = require("path");
module.exports = {
	// mode: "development || "production",
	entry: {
		vendor1: ["./vendor1"],
		vendor2: ["./vendor2"],
		pageA: "./pageA",
		pageB: "./pageB",
		pageC: "./pageC"
	},
	output: {
		path: path.join(__dirname, "dist"),
		filename: "[name].js"
	},
	optimization: {
		splitChunks: {
			cacheGroups: {
				vendor1: {
					name: "vendor1",
					test: "vendor1",
					enforce: true
				},
				vendor2: {
					name: "vendor2",
					test: "vendor2",
					enforce: true
				}
			}
		}
	}
};

dist/vendor1.js

/******/ (() => { // webpackBootstrap
/******/ 	var __webpack_modules__ = ([
/* 0 */
/*!********************!*\
  !*** ./vendor1.js ***!
  \********************/
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: module */
/***/ ((module) => {

module.exports = "Vendor1";

/***/ })
/******/ 	]);
/* webpack runtime code */
/************************************************************************/
/******/ 	// The module cache
/******/ 	var __webpack_module_cache__ = {};
/******/ 	
/******/ 	// The require function
/******/ 	function __webpack_require__(moduleId) {
/******/ 		// Check if module is in cache
/******/ 		if(__webpack_module_cache__[moduleId]) {
/******/ 			return __webpack_module_cache__[moduleId].exports;
/******/ 		}
/******/ 		// Create a new module (and put it into the cache)
/******/ 		var module = __webpack_module_cache__[moduleId] = {
/******/ 			i: moduleId,
/******/ 			l: false,
/******/ 			exports: {}
/******/ 		};
/******/ 	
/******/ 		// Execute the module function
/******/ 		__webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/ 	
/******/ 		// Flag the module as loaded
/******/ 		module.l = true;
/******/ 	
/******/ 		// Return the exports of the module
/******/ 		return module.exports;
/******/ 	}
/******/ 	
/************************************************************************/
/******/ 	// startup
/******/ 	// Load entry module
/******/ 	// This entry module is referenced by other modules so it can't be inlined
/******/ 	__webpack_require__(0);
/******/ })()
;

dist/vendor2.js

/******/ (() => { // webpackBootstrap
/******/ 	var __webpack_modules__ = ([
/* 0 */
/*!********************!*\
  !*** ./vendor1.js ***!
  \********************/
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: module */
/***/ ((module) => {

module.exports = "Vendor1";

/***/ }),
/* 1 */
/*!********************!*\
  !*** ./vendor2.js ***!
  \********************/
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: module, __webpack_require__ */
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {

module.exports = "Vendor2";
__webpack_require__(/*! ./vendor1 */ 0);


/***/ })
/******/ 	]);
/* webpack runtime code */
/************************************************************************/
/******/ 	// The module cache
/******/ 	var __webpack_module_cache__ = {};
/******/ 	
/******/ 	// The require function
/******/ 	function __webpack_require__(moduleId) {
/******/ 		// Check if module is in cache
/******/ 		if(__webpack_module_cache__[moduleId]) {
/******/ 			return __webpack_module_cache__[moduleId].exports;
/******/ 		}
/******/ 		// Create a new module (and put it into the cache)
/******/ 		var module = __webpack_module_cache__[moduleId] = {
/******/ 			i: moduleId,
/******/ 			l: false,
/******/ 			exports: {}
/******/ 		};
/******/ 	
/******/ 		// Execute the module function
/******/ 		__webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/ 	
/******/ 		// Flag the module as loaded
/******/ 		module.l = true;
/******/ 	
/******/ 		// Return the exports of the module
/******/ 		return module.exports;
/******/ 	}
/******/ 	
/************************************************************************/
/******/ 	// startup
/******/ 	// Load entry module
/******/ 	// This entry module is referenced by other modules so it can't be inlined
/******/ 	__webpack_require__(1);
/******/ })()
;

dist/pageA.js

/******/ (() => { // webpackBootstrap
/******/ 	var __webpack_modules__ = ([
/* 0 */
/*!********************!*\
  !*** ./vendor1.js ***!
  \********************/
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: module */
/***/ ((module) => {

module.exports = "Vendor1";

/***/ }),
/* 1 */
/*!********************!*\
  !*** ./vendor2.js ***!
  \********************/
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: module, __webpack_require__ */
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {

module.exports = "Vendor2";
__webpack_require__(/*! ./vendor1 */ 0);


/***/ }),
/* 2 */
/*!******************!*\
  !*** ./pageA.js ***!
  \******************/
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: module, __webpack_require__ */
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {

module.exports = "pageA";
__webpack_require__(/*! ./vendor1 */ 0);
__webpack_require__(/*! ./vendor2 */ 1);


/***/ })
/******/ 	]);
/* webpack runtime code */
/************************************************************************/
/******/ 	// The module cache
/******/ 	var __webpack_module_cache__ = {};
/******/ 	
/******/ 	// The require function
/******/ 	function __webpack_require__(moduleId) {
/******/ 		// Check if module is in cache
/******/ 		if(__webpack_module_cache__[moduleId]) {
/******/ 			return __webpack_module_cache__[moduleId].exports;
/******/ 		}
/******/ 		// Create a new module (and put it into the cache)
/******/ 		var module = __webpack_module_cache__[moduleId] = {
/******/ 			i: moduleId,
/******/ 			l: false,
/******/ 			exports: {}
/******/ 		};
/******/ 	
/******/ 		// Execute the module function
/******/ 		__webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/ 	
/******/ 		// Flag the module as loaded
/******/ 		module.l = true;
/******/ 	
/******/ 		// Return the exports of the module
/******/ 		return module.exports;
/******/ 	}
/******/ 	
/************************************************************************/
/******/ 	// startup
/******/ 	// Load entry module
/******/ 	__webpack_require__(2);
/******/ 	// This entry module used 'module' so it can't be inlined
/******/ })()
;

Info

Unoptimized

Hash: 0a1b2c3d4e5f6a7b8c9d
Version: webpack 5.0.0-beta.6
     Asset      Size
  pageA.js  2.24 KiB  [emitted]  [name: pageA]
  pageB.js   1.5 KiB  [emitted]  [name: pageB]
  pageC.js   1.5 KiB  [emitted]  [name: pageC]
vendor1.js  1.52 KiB  [emitted]  [name: vendor1]
vendor2.js  1.87 KiB  [emitted]  [name: vendor2]
Entrypoint vendor1 = vendor1.js
Entrypoint vendor2 = vendor2.js
Entrypoint pageA = pageA.js
Entrypoint pageB = pageB.js
Entrypoint pageC = pageC.js
chunk vendor1.js (vendor1) 27 bytes [entry] [rendered]
    > ./vendor1 vendor1
 ./vendor1.js 27 bytes [built]
     [used exports unknown]
     cjs require ./vendor1 ./pageA.js 2:0-20
     cjs require ./vendor1 ./vendor2.js 2:0-20
     entry ./vendor1 vendor1
chunk vendor2.js (vendor2) 77 bytes [entry] [rendered]
    > ./vendor2 vendor2
 ./vendor1.js 27 bytes [built]
     [used exports unknown]
     cjs require ./vendor1 ./pageA.js 2:0-20
     cjs require ./vendor1 ./vendor2.js 2:0-20
     entry ./vendor1 vendor1
 ./vendor2.js 50 bytes [built]
     [used exports unknown]
     cjs require ./vendor2 ./pageA.js 3:0-20
     entry ./vendor2 vendor2
chunk pageA.js (pageA) 147 bytes [entry] [rendered]
    > ./pageA pageA
 ./pageA.js 70 bytes [built]
     [used exports unknown]
     entry ./pageA pageA
 ./vendor1.js 27 bytes [built]
     [used exports unknown]
     cjs require ./vendor1 ./pageA.js 2:0-20
     cjs require ./vendor1 ./vendor2.js 2:0-20
     entry ./vendor1 vendor1
 ./vendor2.js 50 bytes [built]
     [used exports unknown]
     cjs require ./vendor2 ./pageA.js 3:0-20
     entry ./vendor2 vendor2
chunk pageB.js (pageB) 25 bytes [entry] [rendered]
    > ./pageB pageB
 ./pageB.js 25 bytes [built]
     [used exports unknown]
     entry ./pageB pageB
chunk pageC.js (pageC) 25 bytes [entry] [rendered]
    > ./pageC pageC
 ./pageC.js 25 bytes [built]
     [used exports unknown]
     entry ./pageC pageC

Production mode

Hash: 0a1b2c3d4e5f6a7b8c9d
Version: webpack 5.0.0-beta.6
     Asset       Size
  pageA.js  267 bytes  [emitted]  [name: pageA]
  pageB.js  176 bytes  [emitted]  [name: pageB]
  pageC.js  176 bytes  [emitted]  [name: pageC]
vendor1.js  178 bytes  [emitted]  [name: vendor1]
vendor2.js  220 bytes  [emitted]  [name: vendor2]
Entrypoint vendor1 = vendor1.js
Entrypoint vendor2 = vendor2.js
Entrypoint pageA = pageA.js
Entrypoint pageB = pageB.js
Entrypoint pageC = pageC.js
chunk pageB.js (pageB) 25 bytes [entry] [rendered]
    > ./pageB pageB
 ./pageB.js 25 bytes [built]
     [no exports used]
     entry ./pageB pageB
chunk pageC.js (pageC) 25 bytes [entry] [rendered]
    > ./pageC pageC
 ./pageC.js 25 bytes [built]
     [no exports used]
     entry ./pageC pageC
chunk vendor2.js (vendor2) 77 bytes [entry] [rendered]
    > ./vendor2 vendor2
 ./vendor1.js 27 bytes [built]
     cjs require ./vendor1 ./pageA.js 2:0-20
     cjs require ./vendor1 ./vendor2.js 2:0-20
     entry ./vendor1 vendor1
 ./vendor2.js 50 bytes [built]
     cjs require ./vendor2 ./pageA.js 3:0-20
     entry ./vendor2 vendor2
chunk pageA.js (pageA) 147 bytes [entry] [rendered]
    > ./pageA pageA
 ./pageA.js 70 bytes [built]
     [no exports used]
     entry ./pageA pageA
 ./vendor1.js 27 bytes [built]
     cjs require ./vendor1 ./pageA.js 2:0-20
     cjs require ./vendor1 ./vendor2.js 2:0-20
     entry ./vendor1 vendor1
 ./vendor2.js 50 bytes [built]
     cjs require ./vendor2 ./pageA.js 3:0-20
     entry ./vendor2 vendor2
chunk vendor1.js (vendor1) 27 bytes [entry] [rendered]
    > ./vendor1 vendor1
 ./vendor1.js 27 bytes [built]
     cjs require ./vendor1 ./pageA.js 2:0-20
     cjs require ./vendor1 ./vendor2.js 2:0-20
     entry ./vendor1 vendor1