|
||
---|---|---|
.. | ||
README.md | ||
build.js | ||
cup1.coffee | ||
cup2.coffee | ||
example.js | ||
template.md | ||
webpack.config.js |
README.md
example.js
console.log(require("./cup1"));
cup1.coffee
module.exports =
cool: "stuff"
answer: 42
external: require "./cup2.coffee"
again: require "./cup2"
cup2.coffee
console.log "yeah coffee-script"
module.exports = 42
js/output.js
`/******/ (function(modules) { /* webpackBootstrap */ })`
``` javascript /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {};// // The require function // function webpack_require(moduleId) {
// // Check if module is in cache // if(installedModules[moduleId]) /******/ return installedModules[moduleId].exports;
// // Create a new module (and put it into the cache) // var module = installedModules[moduleId] = { // i: moduleId, // l: false, // exports: {} // };
// // Execute the module function // modules[moduleId].call(module.exports, module, module.exports, webpack_require);
// // Flag the module as loaded // module.l = true;
// // Return the exports of the module // return module.exports; /******/ }
// // expose the modules object (webpack_modules) // webpack_require.m = modules;
// // expose the module cache // webpack_require.c = installedModules;
// // identity function for calling harmony imports with the correct context // webpack_require.i = function(value) { return value; };
// // define getter function for harmony exports // webpack_require.d = function(exports, name, getter) { // if(!webpack_require.o(exports, name)) { // Object.defineProperty(exports, name, { // configurable: false, // enumerable: true, // get: getter // }); // } // };
// // 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; // };
// // Object.prototype.hasOwnProperty.call // webpack_require.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
// // webpack_public_path // webpack_require.p = "js/";
// // Load entry module and return exports // return webpack_require(webpack_require.s = 2); // }) /******************************************************************/
</details>
``` javascript
/******/ ([
/* 0 */
/* unknown exports provided */
/* all exports used */
/*!*********************!*\
!*** ./cup2.coffee ***!
\*********************/
/***/ function(module, exports) {
console.log("yeah coffee-script");
module.exports = 42;
/***/ },
/* 1 */
/* unknown exports provided */
/* all exports used */
/*!*********************!*\
!*** ./cup1.coffee ***!
\*********************/
/***/ function(module, exports, __webpack_require__) {
module.exports = {
cool: "stuff",
answer: 42,
external: __webpack_require__(/*! ./cup2.coffee */ 0),
again: __webpack_require__(/*! ./cup2 */ 0)
};
/***/ },
/* 2 */
/* unknown exports provided */
/* all exports used */
/*!********************!*\
!*** ./example.js ***!
\********************/
/***/ function(module, exports, __webpack_require__) {
console.log(__webpack_require__(/*! ./cup1 */ 1));
/***/ }
/******/ ]);
Info
Uncompressed
Hash: 909077149c791bec4711
Version: webpack 2.2.0-rc.2
Asset Size Chunks Chunk Names
output.js 3.32 kB 0 [emitted] main
Entrypoint main = output.js
chunk {0} output.js (main) 206 bytes [entry] [rendered]
> main [2] ./example.js
[0] ./cup2.coffee 57 bytes {0} [built]
cjs require ./cup2.coffee [1] ./cup1.coffee 4:12-36
cjs require ./cup2 [1] ./cup1.coffee 5:9-26
[1] ./cup1.coffee 118 bytes {0} [built]
cjs require ./cup1 [2] ./example.js 1:12-29
[2] ./example.js 31 bytes {0} [built]
Minimized (uglify-js, no zip)
Hash: 909077149c791bec4711
Version: webpack 2.2.0-rc.2
Asset Size Chunks Chunk Names
output.js 673 bytes 0 [emitted] main
Entrypoint main = output.js
chunk {0} output.js (main) 206 bytes [entry] [rendered]
> main [2] ./example.js
[0] ./cup2.coffee 57 bytes {0} [built]
cjs require ./cup2.coffee [1] ./cup1.coffee 4:12-36
cjs require ./cup2 [1] ./cup1.coffee 5:9-26
[1] ./cup1.coffee 118 bytes {0} [built]
cjs require ./cup1 [2] ./example.js 1:12-29
[2] ./example.js 31 bytes {0} [built]