@@ -27,6 +27,8 @@ module.exports = 42
2727
2828``` javascript
2929/** ****/ (function (modules ) { // webpackBootstrap
30+ /** ****/ // shortcut for better minimizing
31+ /** ****/ var exports = " exports" ;
3032/** ****/
3133/** ****/ // The module cache
3234/** ****/ var installedModules = {};
@@ -35,7 +37,7 @@ module.exports = 42
3537/** ****/ function require (moduleId ) {
3638/** ****/ // Check if module is in cache
3739/** ****/ if (installedModules[moduleId])
38- /** ****/ return installedModules[moduleId]. exports ;
40+ /** ****/ return installedModules[moduleId][ exports ] ;
3941/** ****/
4042/** ****/ // Create a new module (and put it into the cache)
4143/** ****/ var module = installedModules[moduleId] = {
@@ -45,19 +47,15 @@ module.exports = 42
4547/** ****/ };
4648/** ****/
4749/** ****/ // Execute the module function
48- /** ****/ modules[moduleId].call (module . exports , module , module . exports , require);
50+ /** ****/ modules[moduleId].call (module [ exports ] , module , module [ exports ] , require);
4951/** ****/
5052/** ****/ // Flag the module as loaded
5153/** ****/ module .loaded = true ;
5254/** ****/
5355/** ****/ // Return the exports of the module
54- /** ****/ return module . exports ;
56+ /** ****/ return module [ exports ] ;
5557/** ****/ }
5658/** ****/
57- /** ****/ // The bundle contains no chunks. A empty chunk loading function.
58- /** ****/ require .e = function requireEnsure (_ , callback ) {
59- /** ****/ callback .call (null , this );
60- /** ****/ };
6159/** ****/
6260/** ****/ // expose the modules object (__webpack_modules__)
6361/** ****/ require .modules = modules;
@@ -119,10 +117,10 @@ module.exports = 42
119117
120118```
121119Hash: c0e41294caebebf740e1
122- Version: webpack 1.0.0-beta8
123- Time: 169ms
120+ Version: webpack 1.0.0-rc1
121+ Time: 158ms
124122 Asset Size Chunks Chunk Names
125- output.js 2247 0 [emitted] main
123+ output.js 2143 0 [emitted] main
126124chunk {0} output.js (main) 206 [rendered]
127125 > main [0] ./example.js
128126 [0] ./example.js 31 {0} [built]
@@ -137,10 +135,10 @@ chunk {0} output.js (main) 206 [rendered]
137135
138136```
139137Hash: 5aad8c5ad018219d8bf0
140- Version: webpack 1.0.0-beta8
141- Time: 213ms
138+ Version: webpack 1.0.0-rc1
139+ Time: 207ms
142140 Asset Size Chunks Chunk Names
143- output.js 424 0 [emitted] main
141+ output.js 379 0 [emitted] main
144142chunk {0} output.js (main) 206 [rendered]
145143 > main [0] ./example.js
146144 [0] ./example.js 31 {0} [built]
0 commit comments