webpack/examples/multi-compiler/README.md

299 lines
8.6 KiB
Markdown
Raw Normal View History

2014-06-12 04:52:18 +08:00
# example.js
``` javascript
if(ENV === "mobile") {
require("./mobile-stuff");
}
console.log("Running " + ENV + " build");
```
# webpack.config.js
``` javascript
var path = require("path");
var webpack = require("../../");
module.exports = [
{
2014-06-12 12:38:39 +08:00
name: "mobile",
2017-12-14 17:58:03 +08:00
// mode: "development || "production",
2014-06-12 04:52:18 +08:00
entry: "./example",
output: {
path: path.join(__dirname, "js"),
filename: "mobile.js"
},
plugins: [
new webpack.DefinePlugin({
ENV: JSON.stringify("mobile")
})
]
},
{
2014-06-12 12:38:39 +08:00
name: "desktop",
2017-12-14 17:58:03 +08:00
// mode: "development || "production",
2014-06-12 04:52:18 +08:00
entry: "./example",
output: {
path: path.join(__dirname, "js"),
filename: "desktop.js"
},
plugins: [
new webpack.DefinePlugin({
ENV: JSON.stringify("desktop")
})
]
}
];
```
# js/desktop.js
2017-03-31 02:42:42 +08:00
<details><summary><code>/******/ (function(modules) { /* webpackBootstrap */ })</code></summary>
2014-06-12 04:52:18 +08:00
``` javascript
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // Check if module is in cache
2017-05-23 04:45:18 +08:00
/******/ if(installedModules[moduleId]) {
2014-06-12 04:52:18 +08:00
/******/ return installedModules[moduleId].exports;
2017-05-23 04:45:18 +08:00
/******/ }
2014-06-12 04:52:18 +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: {}
2014-06-12 04:52:18 +08:00
/******/ };
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +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
/******/
2014-06-12 04:52:18 +08:00
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
2017-03-31 02:25:01 +08:00
/******/
/******/
2014-06-12 04:52:18 +08:00
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
2017-03-31 02:25:01 +08:00
/******/
2016-12-08 02:14:47 +08:00
/******/ // define getter function for harmony exports
2016-09-07 18:28:56 +08:00
/******/ __webpack_require__.d = function(exports, name, getter) {
2016-12-14 19:03:24 +08:00
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, {
/******/ configurable: false,
/******/ enumerable: true,
/******/ get: getter
/******/ });
/******/ }
2016-09-07 18:28:56 +08:00
/******/ };
2017-03-31 02:25:01 +08:00
/******/
2017-11-24 15:40:39 +08:00
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
2016-09-07 18:28:56 +08:00
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
2017-03-31 02:25:01 +08:00
/******/
2016-09-07 18:28:56 +08:00
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "js/";
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // Load entry module and return exports
2016-02-04 20:02:53 +08:00
/******/ return __webpack_require__(__webpack_require__.s = 0);
2014-06-12 04:52:18 +08:00
/******/ })
/************************************************************************/
2016-12-14 19:03:24 +08:00
```
2017-03-31 02:42:42 +08:00
2016-12-14 19:03:24 +08:00
</details>
2017-03-31 02:42:42 +08:00
2016-12-14 19:03:24 +08:00
``` javascript
2014-06-12 04:52:18 +08:00
/******/ ([
/* 0 */
/*!********************!*\
!*** ./example.js ***!
\********************/
2017-06-05 22:12:12 +08:00
/*! no static exports found */
2017-03-31 02:25:01 +08:00
/***/ (function(module, exports, __webpack_require__) {
2014-06-12 04:52:18 +08:00
2016-09-07 18:28:56 +08:00
if(false) {
require("./mobile-stuff");
}
console.log("Running " + "desktop" + " build");
2014-06-12 04:52:18 +08:00
2017-03-31 02:25:01 +08:00
/***/ })
2015-06-13 23:41:14 +08:00
/******/ ]);
2014-06-12 04:52:18 +08:00
```
# js/mobile.js
``` javascript
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // Check if module is in cache
2017-05-23 04:45:18 +08:00
/******/ if(installedModules[moduleId]) {
2014-06-12 04:52:18 +08:00
/******/ return installedModules[moduleId].exports;
2017-05-23 04:45:18 +08:00
/******/ }
2014-06-12 04:52:18 +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: {}
2014-06-12 04:52:18 +08:00
/******/ };
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +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
/******/
2014-06-12 04:52:18 +08:00
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
2017-03-31 02:25:01 +08:00
/******/
/******/
2014-06-12 04:52:18 +08:00
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
2017-03-31 02:25:01 +08:00
/******/
2016-12-08 02:14:47 +08:00
/******/ // define getter function for harmony exports
2016-09-07 18:28:56 +08:00
/******/ __webpack_require__.d = function(exports, name, getter) {
2016-12-14 19:03:24 +08:00
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, {
/******/ configurable: false,
/******/ enumerable: true,
/******/ get: getter
/******/ });
/******/ }
2016-09-07 18:28:56 +08:00
/******/ };
2017-03-31 02:25:01 +08:00
/******/
2017-11-24 15:40:39 +08:00
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
2016-09-07 18:28:56 +08:00
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
2017-03-31 02:25:01 +08:00
/******/
2016-09-07 18:28:56 +08:00
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "js/";
2017-03-31 02:25:01 +08:00
/******/
2014-06-12 04:52:18 +08:00
/******/ // Load entry module and return exports
2017-06-05 22:12:12 +08:00
/******/ return __webpack_require__(__webpack_require__.s = 0);
2014-06-12 04:52:18 +08:00
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/*!********************!*\
!*** ./example.js ***!
\********************/
2017-06-05 22:12:12 +08:00
/*! no static exports found */
2017-03-31 02:25:01 +08:00
/***/ (function(module, exports, __webpack_require__) {
2014-06-12 04:52:18 +08:00
2016-09-07 18:28:56 +08:00
if(true) {
2017-06-05 22:12:12 +08:00
__webpack_require__(/*! ./mobile-stuff */ 1);
2016-09-07 18:28:56 +08:00
}
console.log("Running " + "mobile" + " build");
2014-06-12 04:52:18 +08:00
2017-06-05 22:12:12 +08:00
/***/ }),
/* 1 */
/*!*************************!*\
!*** ./mobile-stuff.js ***!
\*************************/
/*! no static exports found */
/***/ (function(module, exports) {
// mobile only stuff
2017-03-31 02:25:01 +08:00
/***/ })
2015-06-13 23:41:14 +08:00
/******/ ]);
2014-06-12 04:52:18 +08:00
```
# Info
2017-12-14 17:58:03 +08:00
## Unoptimized
2014-06-12 04:52:18 +08:00
```
2017-12-14 17:58:03 +08:00
Hash: 0a1b2c3d4e5f6a7b8c9d
2017-11-23 16:47:19 +08:00
Version: webpack next
2014-06-12 12:38:39 +08:00
Child mobile:
2017-12-14 17:58:03 +08:00
Hash: 0a1b2c3d4e5f6a7b8c9d
2017-11-23 16:47:19 +08:00
Asset Size Chunks Chunk Names
2017-12-14 17:58:03 +08:00
mobile.js 3.03 KiB 0 [emitted] main
2016-09-07 18:28:56 +08:00
Entrypoint main = mobile.js
2016-12-14 19:03:24 +08:00
chunk {0} mobile.js (main) 117 bytes [entry] [rendered]
2017-06-05 22:12:12 +08:00
> main [0] ./example.js
[0] ./example.js 97 bytes {0} [built]
2017-11-23 16:47:19 +08:00
single entry ./example main
2017-06-05 22:12:12 +08:00
[1] ./mobile-stuff.js 20 bytes {0} [built]
cjs require ./mobile-stuff [0] ./example.js 2:1-26
2014-06-12 12:38:39 +08:00
Child desktop:
2017-12-14 17:58:03 +08:00
Hash: 0a1b2c3d4e5f6a7b8c9d
2017-11-23 16:47:19 +08:00
Asset Size Chunks Chunk Names
2017-12-14 17:58:03 +08:00
desktop.js 2.82 KiB 0 [emitted] main
2016-09-07 18:28:56 +08:00
Entrypoint main = desktop.js
2016-12-14 19:03:24 +08:00
chunk {0} desktop.js (main) 97 bytes [entry] [rendered]
2014-06-12 04:52:18 +08:00
> main [0] ./example.js
2016-12-14 19:03:24 +08:00
[0] ./example.js 97 bytes {0} [built]
2017-11-23 16:47:19 +08:00
single entry ./example main
2014-06-12 04:52:18 +08:00
```
2017-12-14 17:58:03 +08:00
## Production mode
2014-06-12 04:52:18 +08:00
```
2017-12-14 17:58:03 +08:00
Hash: 0a1b2c3d4e5f6a7b8c9d
2017-11-23 16:47:19 +08:00
Version: webpack next
2014-06-12 12:38:39 +08:00
Child mobile:
2017-12-14 17:58:03 +08:00
Hash: 0a1b2c3d4e5f6a7b8c9d
2015-06-13 23:41:14 +08:00
Asset Size Chunks Chunk Names
2017-11-24 15:40:39 +08:00
mobile.js 606 bytes 0 [emitted] main
2016-09-07 18:28:56 +08:00
Entrypoint main = mobile.js
2016-12-14 19:03:24 +08:00
chunk {0} mobile.js (main) 117 bytes [entry] [rendered]
2017-12-21 18:19:53 +08:00
> main [1] ./example.js
[0] ./mobile-stuff.js 20 bytes {0} [built]
cjs require ./mobile-stuff [1] ./example.js 2:1-26
[1] ./example.js 97 bytes {0} [built]
2017-11-23 16:47:19 +08:00
single entry ./example main
2014-06-12 12:38:39 +08:00
Child desktop:
2017-12-14 17:58:03 +08:00
Hash: 0a1b2c3d4e5f6a7b8c9d
2015-06-13 23:41:14 +08:00
Asset Size Chunks Chunk Names
2017-11-24 15:40:39 +08:00
desktop.js 586 bytes 0 [emitted] main
2016-09-07 18:28:56 +08:00
Entrypoint main = desktop.js
2016-12-14 19:03:24 +08:00
chunk {0} desktop.js (main) 97 bytes [entry] [rendered]
2014-06-12 04:52:18 +08:00
> main [0] ./example.js
2016-12-14 19:03:24 +08:00
[0] ./example.js 97 bytes {0} [built]
2017-11-23 16:47:19 +08:00
single entry ./example main
2016-12-14 19:03:24 +08:00
```