2017-04-13 06:04:10 +08:00
|
|
|
This example demonstrates various types of source-maps.
|
|
|
|
|
|
|
|
# example.coffee
|
|
|
|
|
|
|
|
``` coffeescript
|
|
|
|
# Taken from http://coffeescript.org/
|
|
|
|
|
|
|
|
# Objects:
|
|
|
|
math =
|
|
|
|
root: Math.sqrt
|
|
|
|
square: square
|
|
|
|
cube: (x) -> x * square x
|
|
|
|
|
|
|
|
# Splats:
|
|
|
|
race = (winner, runners...) ->
|
|
|
|
print winner, runners
|
|
|
|
```
|
|
|
|
|
|
|
|
# webpack.config.js
|
|
|
|
|
|
|
|
``` javascript
|
|
|
|
var path = require("path");
|
|
|
|
|
|
|
|
module.exports = [
|
|
|
|
"cheap-eval-source-map",
|
|
|
|
"cheap-module-eval-source-map",
|
|
|
|
"cheap-module-source-map",
|
|
|
|
"cheap-source-map",
|
|
|
|
"eval",
|
|
|
|
"eval-source-map",
|
|
|
|
"hidden-source-map",
|
|
|
|
"inline-source-map",
|
|
|
|
"nosources-source-map",
|
|
|
|
"source-map",
|
|
|
|
].map(devtool => ({
|
2017-11-24 15:40:39 +08:00
|
|
|
mode: "development",
|
2017-04-13 06:04:10 +08:00
|
|
|
entry: {
|
|
|
|
bundle: "coffee-loader!./example.coffee",
|
|
|
|
},
|
|
|
|
output: {
|
2018-01-05 04:39:29 +08:00
|
|
|
path: path.join(__dirname, "dist"),
|
2017-04-13 06:04:10 +08:00
|
|
|
filename: `./[name]-${devtool}.js`,
|
|
|
|
},
|
|
|
|
devtool,
|
2018-01-20 00:06:59 +08:00
|
|
|
optimization: {
|
|
|
|
runtimeChunk: true
|
|
|
|
}
|
2017-04-13 06:04:10 +08:00
|
|
|
}));
|
|
|
|
```
|
|
|
|
|
|
|
|
# Generated source-maps
|
|
|
|
|
|
|
|
## source-map.js and source-map.js.map
|
|
|
|
``` javascript
|
2017-12-14 17:58:03 +08:00
|
|
|
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],[
|
|
|
|
/* 0 */
|
2017-06-05 22:12:12 +08:00
|
|
|
/*!*************************************************************!*\
|
|
|
|
!*** (webpack)/node_modules/coffee-loader!./example.coffee ***!
|
|
|
|
\*************************************************************/
|
|
|
|
/*! no static exports found */
|
2017-04-13 06:04:10 +08:00
|
|
|
/***/ (function(module, exports) {
|
|
|
|
|
|
|
|
var math, race,
|
|
|
|
slice = [].slice;
|
|
|
|
|
|
|
|
math = {
|
|
|
|
root: Math.sqrt,
|
|
|
|
square: square,
|
|
|
|
cube: function(x) {
|
|
|
|
return x * square(x);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
race = function() {
|
|
|
|
var runners, winner;
|
|
|
|
winner = arguments[0], runners = 2 <= arguments.length ? slice.call(arguments, 1) : [];
|
|
|
|
return print(winner, runners);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/***/ })
|
2018-01-20 00:06:59 +08:00
|
|
|
],[[0,1]]]);
|
2017-04-13 06:04:10 +08:00
|
|
|
//# sourceMappingURL=bundle-source-map.js.map
|
|
|
|
```
|
|
|
|
|
|
|
|
``` javascript
|
2018-02-10 22:09:46 +08:00
|
|
|
{"version":3,"sources":["webpack:///./example.coffee"],"names":[],"mappings":";;;;;;;;AAGA;EAAA;;AAAA,OACE;EAAA,MAAQ,IAAI,CAAC,IAAb;EACA,QAAQ,MADR;EAEA,MAAQ,SAAC,CAAD;WAAO,IAAI,OAAO,CAAP;EAAX,CAFR;;;AAKF,OAAO;AACL;EADM,uBAAQ;SACd,MAAM,MAAN,EAAc,OAAd;AADK","file":"./bundle-source-map.js","sourcesContent":["# Taken from http://coffeescript.org/\r\n\r\n# Objects:\r\nmath =\r\n root: Math.sqrt\r\n square: square\r\n cube: (x) -> x * square x\r\n\r\n# Splats:\r\nrace = (winner, runners...) ->\r\n print winner, runners\r\n"],"sourceRoot":""}
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## hidden-source-map.js and hidden-source-map.js.map
|
|
|
|
``` javascript
|
2017-12-14 17:58:03 +08:00
|
|
|
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],[
|
|
|
|
/* 0 */
|
2017-06-05 22:12:12 +08:00
|
|
|
/*!*************************************************************!*\
|
|
|
|
!*** (webpack)/node_modules/coffee-loader!./example.coffee ***!
|
|
|
|
\*************************************************************/
|
|
|
|
/*! no static exports found */
|
2017-04-13 06:04:10 +08:00
|
|
|
/***/ (function(module, exports) {
|
|
|
|
|
|
|
|
var math, race,
|
|
|
|
slice = [].slice;
|
|
|
|
|
|
|
|
math = {
|
|
|
|
root: Math.sqrt,
|
|
|
|
square: square,
|
|
|
|
cube: function(x) {
|
|
|
|
return x * square(x);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
race = function() {
|
|
|
|
var runners, winner;
|
|
|
|
winner = arguments[0], runners = 2 <= arguments.length ? slice.call(arguments, 1) : [];
|
|
|
|
return print(winner, runners);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/***/ })
|
2018-01-20 00:06:59 +08:00
|
|
|
],[[0,1]]]);
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
``` javascript
|
2018-02-10 22:09:46 +08:00
|
|
|
{"version":3,"sources":["webpack:///./example.coffee"],"names":[],"mappings":";;;;;;;;AAGA;EAAA;;AAAA,OACE;EAAA,MAAQ,IAAI,CAAC,IAAb;EACA,QAAQ,MADR;EAEA,MAAQ,SAAC,CAAD;WAAO,IAAI,OAAO,CAAP;EAAX,CAFR;;;AAKF,OAAO;AACL;EADM,uBAAQ;SACd,MAAM,MAAN,EAAc,OAAd;AADK","file":"./bundle-hidden-source-map.js","sourcesContent":["# Taken from http://coffeescript.org/\r\n\r\n# Objects:\r\nmath =\r\n root: Math.sqrt\r\n square: square\r\n cube: (x) -> x * square x\r\n\r\n# Splats:\r\nrace = (winner, runners...) ->\r\n print winner, runners\r\n"],"sourceRoot":""}
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## inline-source-map.js
|
|
|
|
``` javascript
|
2017-12-14 17:58:03 +08:00
|
|
|
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],[
|
|
|
|
/* 0 */
|
2017-06-05 22:12:12 +08:00
|
|
|
/*!*************************************************************!*\
|
|
|
|
!*** (webpack)/node_modules/coffee-loader!./example.coffee ***!
|
|
|
|
\*************************************************************/
|
|
|
|
/*! no static exports found */
|
2017-04-13 06:04:10 +08:00
|
|
|
/***/ (function(module, exports) {
|
|
|
|
|
|
|
|
var math, race,
|
|
|
|
slice = [].slice;
|
|
|
|
|
|
|
|
math = {
|
|
|
|
root: Math.sqrt,
|
|
|
|
square: square,
|
|
|
|
cube: function(x) {
|
|
|
|
return x * square(x);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
race = function() {
|
|
|
|
var runners, winner;
|
|
|
|
winner = arguments[0], runners = 2 <= arguments.length ? slice.call(arguments, 1) : [];
|
|
|
|
return print(winner, runners);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/***/ })
|
2018-01-20 00:06:59 +08:00
|
|
|
],[[0,1]]]);
|
2018-02-10 22:09:46 +08:00
|
|
|
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9leGFtcGxlLmNvZmZlZSJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7OztBQUdBO0VBQUE7O0FBQUEsT0FDRTtFQUFBLE1BQVEsSUFBSSxDQUFDLElBQWI7RUFDQSxRQUFRLE1BRFI7RUFFQSxNQUFRLFNBQUMsQ0FBRDtXQUFPLElBQUksT0FBTyxDQUFQO0VBQVgsQ0FGUjs7O0FBS0YsT0FBTztBQUNMO0VBRE0sdUJBQVE7U0FDZCxNQUFNLE1BQU4sRUFBYyxPQUFkO0FBREsiLCJmaWxlIjoiLi9idW5kbGUtaW5saW5lLXNvdXJjZS1tYXAuanMiLCJzb3VyY2VzQ29udGVudCI6WyIjIFRha2VuIGZyb20gaHR0cDovL2NvZmZlZXNjcmlwdC5vcmcvXHJcblxyXG4jIE9iamVjdHM6XHJcbm1hdGggPVxyXG4gIHJvb3Q6ICAgTWF0aC5zcXJ0XHJcbiAgc3F1YXJlOiBzcXVhcmVcclxuICBjdWJlOiAgICh4KSAtPiB4ICogc3F1YXJlIHhcclxuXHJcbiMgU3BsYXRzOlxyXG5yYWNlID0gKHdpbm5lciwgcnVubmVycy4uLikgLT5cclxuICBwcmludCB3aW5uZXIsIHJ1bm5lcnNcclxuIl0sInNvdXJjZVJvb3QiOiIifQ==
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## nosources-source-map.js.map
|
|
|
|
``` javascript
|
2017-12-14 17:58:03 +08:00
|
|
|
{"version":3,"sources":["webpack:///./example.coffee"],"names":[],"mappings":";;;;;;;;AAGA;EAAA;;AAAA,OACE;EAAA,MAAQ,IAAI,CAAC,IAAb;EACA,QAAQ,MADR;EAEA,MAAQ,SAAC,CAAD;WAAO,IAAI,OAAO,CAAP;EAAX,CAFR;;;AAKF,OAAO;AACL;EADM,uBAAQ;SACd,MAAM,MAAN,EAAc,OAAd;AADK","file":"./bundle-nosources-source-map.js","sourceRoot":""}
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## eval-source-map.js
|
|
|
|
``` javascript
|
2017-12-14 17:58:03 +08:00
|
|
|
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],[
|
|
|
|
/* 0 */
|
2017-06-05 22:12:12 +08:00
|
|
|
/*!*************************************************************!*\
|
|
|
|
!*** (webpack)/node_modules/coffee-loader!./example.coffee ***!
|
|
|
|
\*************************************************************/
|
|
|
|
/*! no static exports found */
|
2017-04-13 06:04:10 +08:00
|
|
|
/***/ (function(module, exports) {
|
|
|
|
|
2018-02-10 22:09:46 +08:00
|
|
|
eval("var math, race,\n slice = [].slice;\n\nmath = {\n root: Math.sqrt,\n square: square,\n cube: function(x) {\n return x * square(x);\n }\n};\n\nrace = function() {\n var runners, winner;\n winner = arguments[0], runners = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n return print(winner, runners);\n};\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9leGFtcGxlLmNvZmZlZT85MWU1Il0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUdBO0VBQUE7O0FBQUEsT0FDRTtFQUFBLE1BQVEsSUFBSSxDQUFDLElBQWI7RUFDQSxRQUFRLE1BRFI7RUFFQSxNQUFRLFNBQUMsQ0FBRDtXQUFPLElBQUksT0FBTyxDQUFQO0VBQVgsQ0FGUjs7O0FBS0YsT0FBTztBQUNMO0VBRE0sdUJBQVE7U0FDZCxNQUFNLE1BQU4sRUFBYyxPQUFkO0FBREsiLCJmaWxlIjoiMC5qcyIsInNvdXJjZXNDb250ZW50IjpbIiMgVGFrZW4gZnJvbSBodHRwOi8vY29mZmVlc2NyaXB0Lm9yZy9cclxuXHJcbiMgT2JqZWN0czpcclxubWF0aCA9XHJcbiAgcm9vdDogICBNYXRoLnNxcnRcclxuICBzcXVhcmU6IHNxdWFyZVxyXG4gIGN1YmU6ICAgKHgpIC0+IHggKiBzcXVhcmUgeFxyXG5cclxuIyBTcGxhdHM6XHJcbnJhY2UgPSAod2lubmVyLCBydW5uZXJzLi4uKSAtPlxyXG4gIHByaW50IHdpbm5lciwgcnVubmVyc1xyXG4iXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///0\n");
|
2017-04-13 06:04:10 +08:00
|
|
|
|
|
|
|
/***/ })
|
2018-01-20 00:06:59 +08:00
|
|
|
],[[0,1]]]);
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## eval.js
|
|
|
|
``` javascript
|
2017-12-14 17:58:03 +08:00
|
|
|
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],[
|
|
|
|
/* 0 */
|
2017-06-05 22:12:12 +08:00
|
|
|
/*!*************************************************************!*\
|
|
|
|
!*** (webpack)/node_modules/coffee-loader!./example.coffee ***!
|
|
|
|
\*************************************************************/
|
|
|
|
/*! no static exports found */
|
2017-04-13 06:04:10 +08:00
|
|
|
/***/ (function(module, exports) {
|
|
|
|
|
2018-02-10 22:09:46 +08:00
|
|
|
eval("var math, race,\n slice = [].slice;\n\nmath = {\n root: Math.sqrt,\n square: square,\n cube: function(x) {\n return x * square(x);\n }\n};\n\nrace = function() {\n var runners, winner;\n winner = arguments[0], runners = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n return print(winner, runners);\n};\n\n\n//# sourceURL=webpack:///./example.coffee?(webpack)/node_modules/coffee-loader");
|
2017-04-13 06:04:10 +08:00
|
|
|
|
|
|
|
/***/ })
|
2018-01-20 00:06:59 +08:00
|
|
|
],[[0,1]]]);
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## cheap-eval-source-map.js
|
|
|
|
``` javascript
|
2017-12-14 17:58:03 +08:00
|
|
|
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],[
|
|
|
|
/* 0 */
|
2017-06-05 22:12:12 +08:00
|
|
|
/*!*************************************************************!*\
|
|
|
|
!*** (webpack)/node_modules/coffee-loader!./example.coffee ***!
|
|
|
|
\*************************************************************/
|
|
|
|
/*! no static exports found */
|
2017-04-13 06:04:10 +08:00
|
|
|
/***/ (function(module, exports) {
|
|
|
|
|
2018-02-10 22:09:46 +08:00
|
|
|
eval("var math, race,\n slice = [].slice;\n\nmath = {\n root: Math.sqrt,\n square: square,\n cube: function(x) {\n return x * square(x);\n }\n};\n\nrace = function() {\n var runners, winner;\n winner = arguments[0], runners = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n return print(winner, runners);\n};\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMC5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL2V4YW1wbGUuY29mZmVlPzA5MjciXSwic291cmNlc0NvbnRlbnQiOlsidmFyIG1hdGgsIHJhY2UsXG4gIHNsaWNlID0gW10uc2xpY2U7XG5cbm1hdGggPSB7XG4gIHJvb3Q6IE1hdGguc3FydCxcbiAgc3F1YXJlOiBzcXVhcmUsXG4gIGN1YmU6IGZ1bmN0aW9uKHgpIHtcbiAgICByZXR1cm4geCAqIHNxdWFyZSh4KTtcbiAgfVxufTtcblxucmFjZSA9IGZ1bmN0aW9uKCkge1xuICB2YXIgcnVubmVycywgd2lubmVyO1xuICB3aW5uZXIgPSBhcmd1bWVudHNbMF0sIHJ1bm5lcnMgPSAyIDw9IGFyZ3VtZW50cy5sZW5ndGggPyBzbGljZS5jYWxsKGFyZ3VtZW50cywgMSkgOiBbXTtcbiAgcmV0dXJuIHByaW50KHdpbm5lciwgcnVubmVycyk7XG59O1xuIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTsiLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///0\n");
|
2017-04-13 06:04:10 +08:00
|
|
|
|
|
|
|
/***/ })
|
2018-01-20 00:06:59 +08:00
|
|
|
],[[0,1]]]);
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## cheap-module-eval-source-map.js
|
|
|
|
``` javascript
|
2017-12-14 17:58:03 +08:00
|
|
|
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[0],[
|
|
|
|
/* 0 */
|
2017-06-05 22:12:12 +08:00
|
|
|
/*!*************************************************************!*\
|
|
|
|
!*** (webpack)/node_modules/coffee-loader!./example.coffee ***!
|
|
|
|
\*************************************************************/
|
|
|
|
/*! no static exports found */
|
2017-04-13 06:04:10 +08:00
|
|
|
/***/ (function(module, exports) {
|
|
|
|
|
2018-02-10 22:09:46 +08:00
|
|
|
eval("var math, race,\n slice = [].slice;\n\nmath = {\n root: Math.sqrt,\n square: square,\n cube: function(x) {\n return x * square(x);\n }\n};\n\nrace = function() {\n var runners, winner;\n winner = arguments[0], runners = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n return print(winner, runners);\n};\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMC5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL2V4YW1wbGUuY29mZmVlPzkxZTUiXSwic291cmNlc0NvbnRlbnQiOlsiIyBUYWtlbiBmcm9tIGh0dHA6Ly9jb2ZmZWVzY3JpcHQub3JnL1xyXG5cclxuIyBPYmplY3RzOlxyXG5tYXRoID1cclxuICByb290OiAgIE1hdGguc3FydFxyXG4gIHNxdWFyZTogc3F1YXJlXHJcbiAgY3ViZTogICAoeCkgLT4geCAqIHNxdWFyZSB4XHJcblxyXG4jIFNwbGF0czpcclxucmFjZSA9ICh3aW5uZXIsIHJ1bm5lcnMuLi4pIC0+XHJcbiAgcHJpbnQgd2lubmVyLCBydW5uZXJzXHJcbiJdLCJtYXBwaW5ncyI6IkFBR0E7QUFBQTtBQUNBO0FBREE7QUFDQTtBQUNBO0FBQ0E7QUFBQTtBQUFBOzs7QUFHQTtBQUNBO0FBREE7QUFDQTtBQURBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///0\n");
|
2017-04-13 06:04:10 +08:00
|
|
|
|
|
|
|
/***/ })
|
2018-01-20 00:06:59 +08:00
|
|
|
],[[0,1]]]);
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## cheap-module-source-map.js.map
|
|
|
|
``` javascript
|
2018-02-10 22:09:46 +08:00
|
|
|
{"version":3,"file":"./bundle-cheap-module-source-map.js","sources":["webpack:///./example.coffee"],"sourcesContent":["# Taken from http://coffeescript.org/\r\n\r\n# Objects:\r\nmath =\r\n root: Math.sqrt\r\n square: square\r\n cube: (x) -> x * square x\r\n\r\n# Splats:\r\nrace = (winner, runners...) ->\r\n print winner, runners\r\n"],"mappings":";;;;;;;;AAGA;AAAA;AACA;AADA;AACA;AACA;AACA;AAAA;AAAA;;;AAGA;AACA;AADA;AACA;AADA;;;;A","sourceRoot":""}
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## cheap-source-map.js.map
|
|
|
|
``` javascript
|
2018-02-10 22:09:46 +08:00
|
|
|
{"version":3,"file":"./bundle-cheap-source-map.js","sources":["webpack:///./example.coffee"],"sourcesContent":["var math, race,\n slice = [].slice;\n\nmath = {\n root: Math.sqrt,\n square: square,\n cube: function(x) {\n return x * square(x);\n }\n};\n\nrace = function() {\n var runners, winner;\n winner = arguments[0], runners = 2 <= arguments.length ? slice.call(arguments, 1) : [];\n return print(winner, runners);\n};\n"],"mappings":";;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;A","sourceRoot":""}
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
# webpack output
|
|
|
|
|
|
|
|
```
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-02-17 21:14:14 +08:00
|
|
|
Version: webpack 4.0.0-beta.2
|
2017-04-13 06:04:10 +08:00
|
|
|
Child
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-01-20 00:06:59 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
2018-02-10 22:09:46 +08:00
|
|
|
./bundle-cheap-eval-source-map.js 1.5 KiB 0 [emitted] bundle
|
|
|
|
./runtime~bundle-cheap-eval-source-map.js 4.93 KiB 1 [emitted] runtime~bundle
|
|
|
|
Entrypoint bundle = ./runtime~bundle-cheap-eval-source-map.js ./bundle-cheap-eval-source-map.js
|
2018-01-20 00:06:59 +08:00
|
|
|
chunk {0} ./bundle-cheap-eval-source-map.js (bundle) 308 bytes ={1}= [initial] [rendered]
|
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-12-14 17:58:03 +08:00
|
|
|
[0] (webpack)/node_modules/coffee-loader!./example.coffee 308 bytes {0} [built]
|
2017-11-23 16:47:19 +08:00
|
|
|
single entry coffee-loader!./example.coffee bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
chunk {1} ./runtime~bundle-cheap-eval-source-map.js (runtime~bundle) 0 bytes ={0}= [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-04-13 06:04:10 +08:00
|
|
|
Child
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-01-20 00:06:59 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
2018-02-10 22:09:46 +08:00
|
|
|
./bundle-cheap-module-eval-source-map.js 1.36 KiB 0 [emitted] bundle
|
|
|
|
./runtime~bundle-cheap-module-eval-source-map.js 4.93 KiB 1 [emitted] runtime~bundle
|
|
|
|
Entrypoint bundle = ./runtime~bundle-cheap-module-eval-source-map.js ./bundle-cheap-module-eval-source-map.js
|
2018-01-20 00:06:59 +08:00
|
|
|
chunk {0} ./bundle-cheap-module-eval-source-map.js (bundle) 308 bytes ={1}= [initial] [rendered]
|
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-12-14 17:58:03 +08:00
|
|
|
[0] (webpack)/node_modules/coffee-loader!./example.coffee 308 bytes {0} [built]
|
2017-11-23 16:47:19 +08:00
|
|
|
single entry coffee-loader!./example.coffee bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
chunk {1} ./runtime~bundle-cheap-module-eval-source-map.js (runtime~bundle) 0 bytes ={0}= [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-04-13 06:04:10 +08:00
|
|
|
Child
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-01-20 00:06:59 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
|
|
|
./bundle-cheap-module-source-map.js 733 bytes 0 [emitted] bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
./runtime~bundle-cheap-module-source-map.js 5 KiB 1 [emitted] runtime~bundle
|
|
|
|
./bundle-cheap-module-source-map.js.map 459 bytes 0 [emitted] bundle
|
|
|
|
./runtime~bundle-cheap-module-source-map.js.map 4.92 KiB 1 [emitted] runtime~bundle
|
|
|
|
Entrypoint bundle = ./runtime~bundle-cheap-module-source-map.js ./runtime~bundle-cheap-module-source-map.js.map ./bundle-cheap-module-source-map.js ./bundle-cheap-module-source-map.js.map
|
2018-01-20 00:06:59 +08:00
|
|
|
chunk {0} ./bundle-cheap-module-source-map.js, ./bundle-cheap-module-source-map.js.map (bundle) 308 bytes ={1}= [initial] [rendered]
|
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-12-14 17:58:03 +08:00
|
|
|
[0] (webpack)/node_modules/coffee-loader!./example.coffee 308 bytes {0} [built]
|
2017-11-23 16:47:19 +08:00
|
|
|
single entry coffee-loader!./example.coffee bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
chunk {1} ./runtime~bundle-cheap-module-source-map.js, ./runtime~bundle-cheap-module-source-map.js.map (runtime~bundle) 0 bytes ={0}= [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-04-13 06:04:10 +08:00
|
|
|
Child
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-01-20 00:06:59 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
|
|
|
./bundle-cheap-source-map.js 726 bytes 0 [emitted] bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
./runtime~bundle-cheap-source-map.js 4.99 KiB 1 [emitted] runtime~bundle
|
|
|
|
./bundle-cheap-source-map.js.map 561 bytes 0 [emitted] bundle
|
|
|
|
./runtime~bundle-cheap-source-map.js.map 4.91 KiB 1 [emitted] runtime~bundle
|
|
|
|
Entrypoint bundle = ./runtime~bundle-cheap-source-map.js ./runtime~bundle-cheap-source-map.js.map ./bundle-cheap-source-map.js ./bundle-cheap-source-map.js.map
|
2018-01-20 00:06:59 +08:00
|
|
|
chunk {0} ./bundle-cheap-source-map.js, ./bundle-cheap-source-map.js.map (bundle) 308 bytes ={1}= [initial] [rendered]
|
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-12-14 17:58:03 +08:00
|
|
|
[0] (webpack)/node_modules/coffee-loader!./example.coffee 308 bytes {0} [built]
|
2017-11-23 16:47:19 +08:00
|
|
|
single entry coffee-loader!./example.coffee bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
chunk {1} ./runtime~bundle-cheap-source-map.js, ./runtime~bundle-cheap-source-map.js.map (runtime~bundle) 0 bytes ={0}= [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-04-13 06:04:10 +08:00
|
|
|
Child
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-01-20 00:06:59 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
2018-02-10 22:09:46 +08:00
|
|
|
./bundle-eval.js 781 bytes 0 [emitted] bundle
|
|
|
|
./runtime~bundle-eval.js 4.93 KiB 1 [emitted] runtime~bundle
|
|
|
|
Entrypoint bundle = ./runtime~bundle-eval.js ./bundle-eval.js
|
2018-01-20 00:06:59 +08:00
|
|
|
chunk {0} ./bundle-eval.js (bundle) 308 bytes ={1}= [initial] [rendered]
|
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-12-14 17:58:03 +08:00
|
|
|
[0] (webpack)/node_modules/coffee-loader!./example.coffee 308 bytes {0} [built]
|
2017-11-23 16:47:19 +08:00
|
|
|
single entry coffee-loader!./example.coffee bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
chunk {1} ./runtime~bundle-eval.js (runtime~bundle) 0 bytes ={0}= [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-04-13 06:04:10 +08:00
|
|
|
Child
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-01-20 00:06:59 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
2018-02-10 22:09:46 +08:00
|
|
|
./bundle-eval-source-map.js 1.49 KiB 0 [emitted] bundle
|
|
|
|
./runtime~bundle-eval-source-map.js 4.93 KiB 1 [emitted] runtime~bundle
|
|
|
|
Entrypoint bundle = ./runtime~bundle-eval-source-map.js ./bundle-eval-source-map.js
|
2018-01-20 00:06:59 +08:00
|
|
|
chunk {0} ./bundle-eval-source-map.js (bundle) 308 bytes ={1}= [initial] [rendered]
|
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-12-14 17:58:03 +08:00
|
|
|
[0] (webpack)/node_modules/coffee-loader!./example.coffee 308 bytes {0} [built]
|
2017-11-23 16:47:19 +08:00
|
|
|
single entry coffee-loader!./example.coffee bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
chunk {1} ./runtime~bundle-eval-source-map.js (runtime~bundle) 0 bytes ={0}= [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-04-13 06:04:10 +08:00
|
|
|
Child
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-01-20 00:06:59 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
|
|
|
./bundle-hidden-source-map.js 674 bytes 0 [emitted] bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
./runtime~bundle-hidden-source-map.js 4.93 KiB 1 [emitted] runtime~bundle
|
|
|
|
./bundle-hidden-source-map.js.map 556 bytes 0 [emitted] bundle
|
|
|
|
./runtime~bundle-hidden-source-map.js.map 4.96 KiB 1 [emitted] runtime~bundle
|
|
|
|
Entrypoint bundle = ./runtime~bundle-hidden-source-map.js ./runtime~bundle-hidden-source-map.js.map ./bundle-hidden-source-map.js ./bundle-hidden-source-map.js.map
|
2018-01-20 00:06:59 +08:00
|
|
|
chunk {0} ./bundle-hidden-source-map.js, ./bundle-hidden-source-map.js.map (bundle) 308 bytes ={1}= [initial] [rendered]
|
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-12-14 17:58:03 +08:00
|
|
|
[0] (webpack)/node_modules/coffee-loader!./example.coffee 308 bytes {0} [built]
|
2017-11-23 16:47:19 +08:00
|
|
|
single entry coffee-loader!./example.coffee bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
chunk {1} ./runtime~bundle-hidden-source-map.js, ./runtime~bundle-hidden-source-map.js.map (runtime~bundle) 0 bytes ={0}= [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-04-13 06:04:10 +08:00
|
|
|
Child
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-01-20 00:06:59 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
2018-02-10 22:09:46 +08:00
|
|
|
./bundle-inline-source-map.js 1.45 KiB 0 [emitted] bundle
|
|
|
|
./runtime~bundle-inline-source-map.js 11.6 KiB 1 [emitted] runtime~bundle
|
|
|
|
Entrypoint bundle = ./runtime~bundle-inline-source-map.js ./bundle-inline-source-map.js
|
2018-01-20 00:06:59 +08:00
|
|
|
chunk {0} ./bundle-inline-source-map.js (bundle) 308 bytes ={1}= [initial] [rendered]
|
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-12-14 17:58:03 +08:00
|
|
|
[0] (webpack)/node_modules/coffee-loader!./example.coffee 308 bytes {0} [built]
|
2017-11-23 16:47:19 +08:00
|
|
|
single entry coffee-loader!./example.coffee bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
chunk {1} ./runtime~bundle-inline-source-map.js (runtime~bundle) 0 bytes ={0}= [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-04-13 06:04:10 +08:00
|
|
|
Child
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-01-20 00:06:59 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
|
|
|
./bundle-nosources-source-map.js 730 bytes 0 [emitted] bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
./runtime~bundle-nosources-source-map.js 5 KiB 1 [emitted] runtime~bundle
|
2018-01-20 00:06:59 +08:00
|
|
|
./bundle-nosources-source-map.js.map 314 bytes 0 [emitted] bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
./runtime~bundle-nosources-source-map.js.map 838 bytes 1 [emitted] runtime~bundle
|
|
|
|
Entrypoint bundle = ./runtime~bundle-nosources-source-map.js ./runtime~bundle-nosources-source-map.js.map ./bundle-nosources-source-map.js ./bundle-nosources-source-map.js.map
|
2018-01-20 00:06:59 +08:00
|
|
|
chunk {0} ./bundle-nosources-source-map.js, ./bundle-nosources-source-map.js.map (bundle) 308 bytes ={1}= [initial] [rendered]
|
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-12-14 17:58:03 +08:00
|
|
|
[0] (webpack)/node_modules/coffee-loader!./example.coffee 308 bytes {0} [built]
|
2017-11-23 16:47:19 +08:00
|
|
|
single entry coffee-loader!./example.coffee bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
chunk {1} ./runtime~bundle-nosources-source-map.js, ./runtime~bundle-nosources-source-map.js.map (runtime~bundle) 0 bytes ={0}= [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-04-13 06:04:10 +08:00
|
|
|
Child
|
2017-12-14 17:58:03 +08:00
|
|
|
Hash: 0a1b2c3d4e5f6a7b8c9d
|
2018-01-20 00:06:59 +08:00
|
|
|
Asset Size Chunks Chunk Names
|
|
|
|
./bundle-source-map.js 720 bytes 0 [emitted] bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
./runtime~bundle-source-map.js 4.99 KiB 1 [emitted] runtime~bundle
|
|
|
|
./bundle-source-map.js.map 549 bytes 0 [emitted] bundle
|
|
|
|
./runtime~bundle-source-map.js.map 4.95 KiB 1 [emitted] runtime~bundle
|
|
|
|
Entrypoint bundle = ./runtime~bundle-source-map.js ./runtime~bundle-source-map.js.map ./bundle-source-map.js ./bundle-source-map.js.map
|
2018-01-20 00:06:59 +08:00
|
|
|
chunk {0} ./bundle-source-map.js, ./bundle-source-map.js.map (bundle) 308 bytes ={1}= [initial] [rendered]
|
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-12-14 17:58:03 +08:00
|
|
|
[0] (webpack)/node_modules/coffee-loader!./example.coffee 308 bytes {0} [built]
|
2017-11-23 16:47:19 +08:00
|
|
|
single entry coffee-loader!./example.coffee bundle
|
2018-02-10 22:09:46 +08:00
|
|
|
chunk {1} ./runtime~bundle-source-map.js, ./runtime~bundle-source-map.js.map (runtime~bundle) 0 bytes ={0}= [entry] [rendered]
|
2018-01-20 00:06:59 +08:00
|
|
|
> coffee-loader!./example.coffee bundle
|
2017-04-13 06:04:10 +08:00
|
|
|
```
|