# example.js ``` javascript console.log(require("./cup1")); ``` # cup1.coffee ``` coffee-script module.exports = cool: "stuff" answer: 42 external: require "./cup2.coffee" again: require "./cup2" ``` # cup2.coffee ``` coffee-script console.log "yeah coffee-script" module.exports = 42 ``` # dist/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; /******/ /******/ // 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 /******/ }); /******/ } /******/ }; /******/ /******/ // define __esModule on exports /******/ __webpack_require__.r = function(exports) { /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ /******/ // 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 = "dist/"; /******/ /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 0); /******/ }) /************************************************************************/ ```
``` javascript /******/ ([ /* 0 */ /*!********************!*\ !*** ./example.js ***! \********************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { console.log(__webpack_require__(/*! ./cup1 */ 1)); /***/ }), /* 1 */ /*!*********************!*\ !*** ./cup1.coffee ***! \*********************/ /*! no static exports found */ /***/ (function(module, exports, __webpack_require__) { module.exports = { cool: "stuff", answer: 42, external: __webpack_require__(/*! ./cup2.coffee */ 2), again: __webpack_require__(/*! ./cup2 */ 2) }; /***/ }), /* 2 */ /*!*********************!*\ !*** ./cup2.coffee ***! \*********************/ /*! no static exports found */ /***/ (function(module, exports) { console.log("yeah coffee-script"); module.exports = 42; /***/ }) /******/ ]); ``` # Info ## Unoptimized ``` Hash: 0a1b2c3d4e5f6a7b8c9d Version: webpack 4.8.0 Asset Size Chunks Chunk Names output.js 3.35 KiB 0 [emitted] main Entrypoint main = output.js chunk {0} output.js (main) 206 bytes [entry] [rendered] > .\example.js main [0] ./example.js 31 bytes {0} [built] single entry .\example.js main [1] ./cup1.coffee 118 bytes {0} [built] cjs require ./cup1 [0] ./example.js 1:12-29 [2] ./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 ``` ## Production mode ``` Hash: 0a1b2c3d4e5f6a7b8c9d Version: webpack 4.8.0 Asset Size Chunks Chunk Names output.js 708 bytes 0 [emitted] main Entrypoint main = output.js chunk {0} output.js (main) 206 bytes [entry] [rendered] > .\example.js main [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] single entry .\example.js main ```