webpack/examples/coffee-script/README.md

156 lines
3.9 KiB
Markdown
Raw Normal View History

2012-03-27 06:00:51 +08:00
# example.js
2019-04-09 02:29:40 +08:00
```javascript
2013-02-13 18:58:13 +08:00
console.log(require("./cup1"));
2012-03-27 06:00:51 +08:00
```
# cup1.coffee
2019-04-09 02:29:40 +08:00
```coffee-script
2012-03-27 06:00:51 +08:00
module.exports =
cool: "stuff"
answer: 42
external: require "./cup2.coffee"
2013-02-13 18:58:13 +08:00
again: require "./cup2"
2012-03-27 06:00:51 +08:00
```
# cup2.coffee
2019-04-09 02:29:40 +08:00
```coffee-script
2012-03-27 06:00:51 +08:00
console.log "yeah coffee-script"
module.exports = 42
```
# dist/output.js
2012-03-27 06:00:51 +08:00
2019-04-09 02:29:40 +08:00
```javascript
2019-10-09 05:45:47 +08:00
/******/ ((modules, runtime) => { // webpackBootstrap
2018-12-19 21:05:17 +08:00
/******/ "use strict";
2013-03-28 17:31:52 +08:00
/******/ // The module cache
/******/ var installedModules = {};
2017-03-31 02:25:01 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // The require function
2014-03-25 17:44:10 +08:00
/******/ function __webpack_require__(moduleId) {
2017-03-31 02:25:01 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Check if module is in cache
2017-05-23 04:45:18 +08:00
/******/ if(installedModules[moduleId]) {
2014-03-25 17:44:10 +08:00
/******/ return installedModules[moduleId].exports;
2017-05-23 04:45:18 +08:00
/******/ }
2013-03-28 17:31:52 +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: {}
2013-03-28 17:31:52 +08:00
/******/ };
2017-03-31 02:25:01 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Execute the module function
2019-10-09 05:45:47 +08:00
/******/ modules[moduleId](module, module.exports, __webpack_require__);
2017-03-31 02:25:01 +08:00
/******/
2013-03-28 17:31:52 +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
/******/
2013-03-28 17:31:52 +08:00
/******/ // Return the exports of the module
2014-03-25 17:44:10 +08:00
/******/ return module.exports;
2013-03-28 17:31:52 +08:00
/******/ }
2017-03-31 02:25:01 +08:00
/******/
/******/
2019-02-05 01:52:39 +08:00
/******/ // the startup function
/******/ function startup() {
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
2018-09-25 23:08:35 +08:00
/******/ };
/******/
2019-02-05 01:52:39 +08:00
/******/ // run startup
/******/ return startup();
2013-03-28 17:31:52 +08:00
/******/ })
2013-03-27 01:22:30 +08:00
/************************************************************************/
2013-12-16 06:30:50 +08:00
/******/ ([
/* 0 */
2017-06-05 22:12:12 +08:00
/*!********************!*\
!*** ./example.js ***!
\********************/
2019-08-05 19:32:25 +08:00
/*! exports [maybe provided (runtime-defined)] [no usage info] */
2018-12-19 21:05:17 +08:00
/*! runtime requirements: __webpack_require__ */
2019-10-09 05:45:47 +08:00
/***/ ((__unusedmodule, __unusedexports, __webpack_require__) => {
2017-06-05 22:12:12 +08:00
2017-12-14 17:58:03 +08:00
console.log(__webpack_require__(/*! ./cup1 */ 1));
2017-06-05 22:12:12 +08:00
/***/ }),
2017-12-14 17:58:03 +08:00
/* 1 */
2013-02-13 18:58:13 +08:00
/*!*********************!*\
2015-06-13 23:41:14 +08:00
!*** ./cup1.coffee ***!
2013-02-13 18:58:13 +08:00
\*********************/
2019-08-05 19:32:25 +08:00
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: module, __webpack_require__ */
2019-10-09 05:45:47 +08:00
/***/ ((module, __unusedexports, __webpack_require__) => {
2013-02-13 18:58:13 +08:00
2016-09-07 18:28:56 +08:00
module.exports = {
cool: "stuff",
answer: 42,
2017-12-14 17:58:03 +08:00
external: __webpack_require__(/*! ./cup2.coffee */ 2),
again: __webpack_require__(/*! ./cup2 */ 2)
2016-09-07 18:28:56 +08:00
};
2013-10-31 07:49:59 +08:00
2013-02-13 18:58:13 +08:00
2017-12-14 17:58:03 +08:00
/***/ }),
/* 2 */
/*!*********************!*\
!*** ./cup2.coffee ***!
\*********************/
2019-08-05 19:32:25 +08:00
/*! exports [maybe provided (runtime-defined)] [no usage info] */
2018-12-19 21:05:17 +08:00
/*! runtime requirements: module */
2019-10-09 05:45:47 +08:00
/***/ ((module) => {
2017-12-14 17:58:03 +08:00
console.log("yeah coffee-script");
module.exports = 42;
2017-03-31 02:25:01 +08:00
/***/ })
2015-06-13 23:41:14 +08:00
/******/ ]);
2012-03-27 06:00:51 +08:00
```
# Info
2017-12-14 17:58:03 +08:00
## Unoptimized
2012-03-27 06:00:51 +08:00
```
2017-12-14 17:58:03 +08:00
Hash: 0a1b2c3d4e5f6a7b8c9d
2019-10-09 05:45:47 +08:00
Version: webpack 5.0.0-alpha.30
2017-11-23 16:47:19 +08:00
Asset Size Chunks Chunk Names
2019-10-09 05:45:47 +08:00
output.js 2.27 KiB {0} [emitted] main
2016-09-07 18:28:56 +08:00
Entrypoint main = output.js
2018-12-19 21:05:17 +08:00
chunk {0} output.js (main) 206 bytes [entry] [rendered]
2019-01-25 20:15:22 +08:00
> ./example.js main
2018-05-07 18:36:38 +08:00
[0] ./example.js 31 bytes {0} [built]
2018-09-26 05:13:58 +08:00
[used exports unknown]
2019-02-05 01:52:39 +08:00
entry ./example.js main
2018-05-07 18:36:38 +08:00
[1] ./cup1.coffee 118 bytes {0} [built]
2018-09-26 05:13:58 +08:00
[used exports unknown]
2018-05-07 18:36:38 +08:00
cjs require ./cup1 [0] ./example.js 1:12-29
[2] ./cup2.coffee 57 bytes {0} [built]
2018-09-26 05:13:58 +08:00
[used exports unknown]
2018-05-07 18:36:38 +08:00
cjs require ./cup2.coffee [1] ./cup1.coffee 4:12-36
cjs require ./cup2 [1] ./cup1.coffee 5:9-26
2012-03-27 06:00:51 +08:00
```
2017-12-14 17:58:03 +08:00
## Production mode
2012-03-27 06:00:51 +08:00
```
2017-12-14 17:58:03 +08:00
Hash: 0a1b2c3d4e5f6a7b8c9d
2019-10-09 05:45:47 +08:00
Version: webpack 5.0.0-alpha.30
2018-12-19 21:05:17 +08:00
Asset Size Chunks Chunk Names
2019-10-09 05:45:47 +08:00
output.js 329 bytes {179} [emitted] main
2016-09-07 18:28:56 +08:00
Entrypoint main = output.js
2019-05-10 03:34:28 +08:00
chunk {179} output.js (main) 206 bytes [entry] [rendered]
2019-01-25 20:15:22 +08:00
> ./example.js main
2019-05-10 03:34:28 +08:00
[56] ./cup2.coffee 57 bytes {179} [built]
cjs require ./cup2.coffee [867] ./cup1.coffee 4:12-36
cjs require ./cup2 [867] ./cup1.coffee 5:9-26
[144] ./example.js 31 bytes {179} [built]
2019-02-05 01:52:39 +08:00
entry ./example.js main
2019-05-10 03:34:28 +08:00
[867] ./cup1.coffee 118 bytes {179} [built]
cjs require ./cup1 [144] ./example.js 1:12-29
2019-04-09 02:29:40 +08:00
```