webpack/examples/multi-compiler/README.md

237 lines
6.1 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",
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",
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
``` javascript
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
2015-06-13 23:41:14 +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
/******/ };
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
2015-06-13 23:41:14 +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;
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
2015-06-13 23:41:14 +08:00
2016-06-06 02:51:44 +08:00
/******/ // identity function for calling harmory imports with the correct context
/******/ __webpack_require__.i = function(value) { return value; };
2014-06-12 04:52:18 +08:00
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "js/";
2015-06-13 23:41:14 +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
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/*!********************!*\
!*** ./example.js ***!
\********************/
/***/ function(module, exports, __webpack_require__) {
if(false) {
require("./mobile-stuff");
}
2016-02-04 20:02:53 +08:00
console.log("Running " + "desktop" + " build");
2014-06-12 04:52:18 +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 = {};
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
2015-06-13 23:41:14 +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
/******/ };
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
2015-06-13 23:41:14 +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;
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
2015-06-13 23:41:14 +08:00
2014-06-12 04:52:18 +08:00
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
2015-06-13 23:41:14 +08:00
2016-06-06 02:51:44 +08:00
/******/ // identity function for calling harmory imports with the correct context
/******/ __webpack_require__.i = function(value) { return value; };
2014-06-12 04:52:18 +08:00
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "js/";
2015-06-13 23:41:14 +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 = 1);
2014-06-12 04:52:18 +08:00
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
2016-02-04 20:02:53 +08:00
/*!*************************!*\
!*** ./mobile-stuff.js ***!
\*************************/
/***/ function(module, exports) {
// mobile only stuff
/***/ },
/* 1 */
2014-06-12 04:52:18 +08:00
/*!********************!*\
!*** ./example.js ***!
\********************/
/***/ function(module, exports, __webpack_require__) {
if(true) {
2016-02-04 20:02:53 +08:00
__webpack_require__(/*! ./mobile-stuff */ 0);
2014-06-12 04:52:18 +08:00
}
2016-02-04 20:02:53 +08:00
console.log("Running " + "mobile" + " build");
2014-06-12 04:52:18 +08:00
/***/ }
2015-06-13 23:41:14 +08:00
/******/ ]);
2014-06-12 04:52:18 +08:00
```
# Info
## Uncompressed
```
2016-02-04 20:02:53 +08:00
Hash: 6ce19ec5d44a5170ba3b6af152727b3d5da03eaa
2016-06-06 02:51:44 +08:00
Version: webpack 2.1.0-beta.11
2014-06-12 12:38:39 +08:00
Child mobile:
2016-02-04 20:02:53 +08:00
Hash: 6ce19ec5d44a5170ba3b
2016-06-06 02:51:44 +08:00
Version: webpack 2.1.0-beta.11
Time: 70ms
2015-06-13 23:41:14 +08:00
Asset Size Chunks Chunk Names
2016-06-06 02:51:44 +08:00
mobile.js 1.94 kB 0 [emitted] main
2015-06-13 23:41:14 +08:00
chunk {0} mobile.js (main) 117 bytes [rendered]
2016-02-04 20:02: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]
2014-06-12 12:38:39 +08:00
Child desktop:
2016-02-04 20:02:53 +08:00
Hash: 6af152727b3d5da03eaa
2016-06-06 02:51:44 +08:00
Version: webpack 2.1.0-beta.11
Time: 59ms
2015-06-13 23:41:14 +08:00
Asset Size Chunks Chunk Names
2016-06-06 02:51:44 +08:00
desktop.js 1.75 kB 0 [emitted] main
2015-06-13 23:41:14 +08:00
chunk {0} desktop.js (main) 97 bytes [rendered]
2014-06-12 04:52:18 +08:00
> main [0] ./example.js
2015-06-13 23:41:14 +08:00
[0] ./example.js 97 bytes {0} [built]
2014-06-12 04:52:18 +08:00
```
## Minimized (uglify-js, no zip)
```
2016-02-04 20:02:53 +08:00
Hash: 6ce19ec5d44a5170ba3b6af152727b3d5da03eaa
2016-06-06 02:51:44 +08:00
Version: webpack 2.1.0-beta.11
2014-06-12 12:38:39 +08:00
Child mobile:
2016-02-04 20:02:53 +08:00
Hash: 6ce19ec5d44a5170ba3b
2016-06-06 02:51:44 +08:00
Version: webpack 2.1.0-beta.11
Time: 115ms
2015-06-13 23:41:14 +08:00
Asset Size Chunks Chunk Names
2016-06-06 02:51:44 +08:00
mobile.js 298 bytes 0 [emitted] main
2015-06-13 23:41:14 +08:00
chunk {0} mobile.js (main) 117 bytes [rendered]
2016-02-04 20:02: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]
2014-06-12 12:38:39 +08:00
Child desktop:
2016-02-04 20:02:53 +08:00
Hash: 6af152727b3d5da03eaa
2016-06-06 02:51:44 +08:00
Version: webpack 2.1.0-beta.11
Time: 104ms
2015-06-13 23:41:14 +08:00
Asset Size Chunks Chunk Names
2016-06-06 02:51:44 +08:00
desktop.js 278 bytes 0 [emitted] main
2015-06-13 23:41:14 +08:00
chunk {0} desktop.js (main) 97 bytes [rendered]
2014-06-12 04:52:18 +08:00
> main [0] ./example.js
2015-06-13 23:41:14 +08:00
[0] ./example.js 97 bytes {0} [built]
2014-06-12 04:52:18 +08:00
```