| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | This example demonstrates various types of source-maps. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # example.coffee
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | ```coffeescript | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | # 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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | var path = require("path"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = [ | 
					
						
							|  |  |  | 	"eval", | 
					
						
							| 
									
										
										
										
											2019-10-18 21:10:26 +08:00
										 |  |  | 	"eval-cheap-source-map", | 
					
						
							|  |  |  | 	"eval-cheap-module-source-map", | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 	"eval-source-map", | 
					
						
							| 
									
										
										
										
											2019-10-18 21:10:26 +08:00
										 |  |  | 	"cheap-source-map", | 
					
						
							|  |  |  | 	"cheap-module-source-map", | 
					
						
							|  |  |  | 	"inline-cheap-source-map", | 
					
						
							|  |  |  | 	"inline-cheap-module-source-map", | 
					
						
							|  |  |  | 	"source-map", | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 	"inline-source-map", | 
					
						
							| 
									
										
										
										
											2019-10-18 21:10:26 +08:00
										 |  |  | 	"hidden-source-map", | 
					
						
							|  |  |  | 	"nosources-source-map" | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ].map(devtool => ({ | 
					
						
							| 
									
										
										
										
											2017-11-24 15:40:39 +08:00
										 |  |  | 	mode: "development", | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 	entry: { | 
					
						
							| 
									
										
										
										
											2018-04-04 21:17:13 +08:00
										 |  |  | 		bundle: "coffee-loader!./example.coffee" | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	output: { | 
					
						
							| 
									
										
										
										
											2018-01-05 04:39:29 +08:00
										 |  |  | 		path: path.join(__dirname, "dist"), | 
					
						
							| 
									
										
										
										
											2018-04-04 21:17:13 +08:00
										 |  |  | 		filename: `./[name]-${devtool}.js` | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	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
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([[0],[ | 
					
						
							| 
									
										
										
										
											2017-12-14 17:58:03 +08:00
										 |  |  | /* 0 */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*!*********************************************************************!*\ | 
					
						
							|  |  |  |   !*** ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee ***! | 
					
						
							|  |  |  |   \*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							| 
									
										
										
										
											2018-12-19 21:05:17 +08:00
										 |  |  | /*! runtime requirements:  */ | 
					
						
							| 
									
										
										
										
											2019-10-09 05:45:47 +08:00
										 |  |  | /***/ (() => { | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 04:48:54 +08:00
										 |  |  | // Taken from http://coffeescript.org/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Objects: | 
					
						
							|  |  |  | var math, race; | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | math = { | 
					
						
							|  |  |  |   root: Math.sqrt, | 
					
						
							|  |  |  |   square: square, | 
					
						
							|  |  |  |   cube: function(x) { | 
					
						
							|  |  |  |     return x * square(x); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 04:48:54 +08:00
										 |  |  | // Splats: | 
					
						
							|  |  |  | race = function(winner, ...runners) { | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  |   return print(winner, runners); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***/ }) | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | ], | 
					
						
							|  |  |  | 0,[[0,1]]]); | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | //# sourceMappingURL=bundle-source-map.js.map | 
					
						
							|  |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-13 00:51:26 +08:00
										 |  |  | ```json | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | {"version":3,"sources":["webpack:///./example.coffee"],"names":[],"mappings":";;;;;;;;;AAEU;;;AAAA;;AACV,OACE;EAAA,MAAQ,IAAI,CAAC,IAAb;EACA,QAAQ,MADR;EAEA,MAAQ,SAAC,CAAD;WAAO,IAAI,OAAO,CAAP;EAAX;AAFR,EAFQ;;;AAOV,OAAO,SAAC,MAAD,KAAS,OAAT;SACL,MAAM,MAAN,EAAc,OAAd;AADK","file":"./bundle-source-map.js","sourcesContent":["# Taken from http://coffeescript.org/\n\n# Objects:\nmath =\n  root:   Math.sqrt\n  square: square\n  cube:   (x) -> x * square x\n\n# Splats:\nrace = (winner, runners...) ->\n  print winner, runners\n"],"sourceRoot":""} | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## hidden-source-map.js and hidden-source-map.js.map
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([[0],[ | 
					
						
							| 
									
										
										
										
											2017-12-14 17:58:03 +08:00
										 |  |  | /* 0 */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*!*********************************************************************!*\ | 
					
						
							|  |  |  |   !*** ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee ***! | 
					
						
							|  |  |  |   \*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							| 
									
										
										
										
											2018-12-19 21:05:17 +08:00
										 |  |  | /*! runtime requirements:  */ | 
					
						
							| 
									
										
										
										
											2019-10-09 05:45:47 +08:00
										 |  |  | /***/ (() => { | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 04:48:54 +08:00
										 |  |  | // Taken from http://coffeescript.org/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Objects: | 
					
						
							|  |  |  | var math, race; | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | math = { | 
					
						
							|  |  |  |   root: Math.sqrt, | 
					
						
							|  |  |  |   square: square, | 
					
						
							|  |  |  |   cube: function(x) { | 
					
						
							|  |  |  |     return x * square(x); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 04:48:54 +08:00
										 |  |  | // Splats: | 
					
						
							|  |  |  | race = function(winner, ...runners) { | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  |   return print(winner, runners); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***/ }) | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | ], | 
					
						
							|  |  |  | 0,[[0,1]]]); | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-13 00:51:26 +08:00
										 |  |  | ```json | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | {"version":3,"sources":["webpack:///./example.coffee"],"names":[],"mappings":";;;;;;;;;AAEU;;;AAAA;;AACV,OACE;EAAA,MAAQ,IAAI,CAAC,IAAb;EACA,QAAQ,MADR;EAEA,MAAQ,SAAC,CAAD;WAAO,IAAI,OAAO,CAAP;EAAX;AAFR,EAFQ;;;AAOV,OAAO,SAAC,MAAD,KAAS,OAAT;SACL,MAAM,MAAN,EAAc,OAAd;AADK","file":"./bundle-hidden-source-map.js","sourcesContent":["# Taken from http://coffeescript.org/\n\n# Objects:\nmath =\n  root:   Math.sqrt\n  square: square\n  cube:   (x) -> x * square x\n\n# Splats:\nrace = (winner, runners...) ->\n  print winner, runners\n"],"sourceRoot":""} | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## inline-source-map.js
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([[0],[ | 
					
						
							| 
									
										
										
										
											2017-12-14 17:58:03 +08:00
										 |  |  | /* 0 */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*!*********************************************************************!*\ | 
					
						
							|  |  |  |   !*** ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee ***! | 
					
						
							|  |  |  |   \*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							| 
									
										
										
										
											2018-12-19 21:05:17 +08:00
										 |  |  | /*! runtime requirements:  */ | 
					
						
							| 
									
										
										
										
											2019-10-09 05:45:47 +08:00
										 |  |  | /***/ (() => { | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 04:48:54 +08:00
										 |  |  | // Taken from http://coffeescript.org/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Objects: | 
					
						
							|  |  |  | var math, race; | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | math = { | 
					
						
							|  |  |  |   root: Math.sqrt, | 
					
						
							|  |  |  |   square: square, | 
					
						
							|  |  |  |   cube: function(x) { | 
					
						
							|  |  |  |     return x * square(x); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-04 04:48:54 +08:00
										 |  |  | // Splats: | 
					
						
							|  |  |  | race = function(winner, ...runners) { | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  |   return print(winner, runners); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***/ }) | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | ], | 
					
						
							|  |  |  | 0,[[0,1]]]); | 
					
						
							|  |  |  | //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8vLi9leGFtcGxlLmNvZmZlZSJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFFVTs7O0FBQUE7O0FBQ1YsT0FDRTtFQUFBLE1BQVEsSUFBSSxDQUFDLElBQWI7RUFDQSxRQUFRLE1BRFI7RUFFQSxNQUFRLFNBQUMsQ0FBRDtXQUFPLElBQUksT0FBTyxDQUFQO0VBQVg7QUFGUixFQUZROzs7QUFPVixPQUFPLFNBQUMsTUFBRCxLQUFTLE9BQVQ7U0FDTCxNQUFNLE1BQU4sRUFBYyxPQUFkO0FBREsiLCJmaWxlIjoiLi9idW5kbGUtaW5saW5lLXNvdXJjZS1tYXAuanMiLCJzb3VyY2VzQ29udGVudCI6WyIjIFRha2VuIGZyb20gaHR0cDovL2NvZmZlZXNjcmlwdC5vcmcvXG5cbiMgT2JqZWN0czpcbm1hdGggPVxuICByb290OiAgIE1hdGguc3FydFxuICBzcXVhcmU6IHNxdWFyZVxuICBjdWJlOiAgICh4KSAtPiB4ICogc3F1YXJlIHhcblxuIyBTcGxhdHM6XG5yYWNlID0gKHdpbm5lciwgcnVubmVycy4uLikgLT5cbiAgcHJpbnQgd2lubmVyLCBydW5uZXJzXG4iXSwic291cmNlUm9vdCI6IiJ9 | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## nosources-source-map.js.map
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-13 00:51:26 +08:00
										 |  |  | ```json | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | {"version":3,"sources":["webpack:///./example.coffee"],"names":[],"mappings":";;;;;;;;;AAEU;;;AAAA;;AACV,OACE;EAAA,MAAQ,IAAI,CAAC,IAAb;EACA,QAAQ,MADR;EAEA,MAAQ,SAAC,CAAD;WAAO,IAAI,OAAO,CAAP;EAAX;AAFR,EAFQ;;;AAOV,OAAO,SAAC,MAAD,KAAS,OAAT;SACL,MAAM,MAAN,EAAc,OAAd;AADK","file":"./bundle-nosources-source-map.js","sourceRoot":""} | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## eval-source-map.js
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * ATTENTION: An "eval-source-map" devtool has been used. | 
					
						
							|  |  |  |  * This devtool is not neither made for production nor for readable output files. | 
					
						
							|  |  |  |  * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. | 
					
						
							|  |  |  |  * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) | 
					
						
							|  |  |  |  * or disable the default devtool with "devtool: false". | 
					
						
							|  |  |  |  * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([[0],[ | 
					
						
							| 
									
										
										
										
											2017-12-14 17:58:03 +08:00
										 |  |  | /* 0 */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*!*********************************************************************!*\ | 
					
						
							|  |  |  |   !*** ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee ***! | 
					
						
							|  |  |  |   \*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							| 
									
										
										
										
											2018-12-19 21:05:17 +08:00
										 |  |  | /*! runtime requirements:  */ | 
					
						
							| 
									
										
										
										
											2019-10-09 05:45:47 +08:00
										 |  |  | /***/ (() => { | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | eval("// Taken from http://coffeescript.org/\n\n// Objects:\nvar math, race;\n\nmath = {\n  root: Math.sqrt,\n  square: square,\n  cube: function(x) {\n    return x * square(x);\n  }\n};\n\n// Splats:\nrace = function(winner, ...runners) {\n  return print(winner, runners);\n};\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vLy4vZXhhbXBsZS5jb2ZmZWU/MjQxNiJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFVTs7O0FBQUEsSUFBQSxJQUFBLEVBQUE7O0FBQ1YsSUFBQSxHQUNFO0VBQUEsSUFBQSxFQUFRLElBQUksQ0FBQyxJQUFiO0VBQ0EsTUFBQSxFQUFRLE1BRFI7RUFFQSxJQUFBLEVBQVEsUUFBQSxDQUFDLENBQUQsQ0FBQTtXQUFPLENBQUEsR0FBSSxNQUFBLENBQU8sQ0FBUDtFQUFYO0FBRlIsRUFGUTs7O0FBT1YsSUFBQSxHQUFPLFFBQUEsQ0FBQyxNQUFELEVBQUEsR0FBUyxPQUFULENBQUE7U0FDTCxLQUFBLENBQU0sTUFBTixFQUFjLE9BQWQ7QUFESyIsInNvdXJjZXNDb250ZW50IjpbIiMgVGFrZW4gZnJvbSBodHRwOi8vY29mZmVlc2NyaXB0Lm9yZy9cblxuIyBPYmplY3RzOlxubWF0aCA9XG4gIHJvb3Q6ICAgTWF0aC5zcXJ0XG4gIHNxdWFyZTogc3F1YXJlXG4gIGN1YmU6ICAgKHgpIC0+IHggKiBzcXVhcmUgeFxuXG4jIFNwbGF0czpcbnJhY2UgPSAod2lubmVyLCBydW5uZXJzLi4uKSAtPlxuICBwcmludCB3aW5uZXIsIHJ1bm5lcnNcbiJdLCJmaWxlIjoiMC5qcyJ9\n//# sourceURL=webpack-internal:///0\n"); | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /***/ }) | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | ], | 
					
						
							|  |  |  | 0,[[0,1]]]); | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## eval.js
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development"). | 
					
						
							|  |  |  |  * This devtool is not neither made for production nor for readable output files. | 
					
						
							|  |  |  |  * It uses "eval()" calls to create a separate source file in the browser devtools. | 
					
						
							|  |  |  |  * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) | 
					
						
							|  |  |  |  * or disable the default devtool with "devtool: false". | 
					
						
							|  |  |  |  * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([[0],[ | 
					
						
							| 
									
										
										
										
											2017-12-14 17:58:03 +08:00
										 |  |  | /* 0 */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*!*********************************************************************!*\ | 
					
						
							|  |  |  |   !*** ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee ***! | 
					
						
							|  |  |  |   \*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							| 
									
										
										
										
											2018-12-19 21:05:17 +08:00
										 |  |  | /*! runtime requirements:  */ | 
					
						
							| 
									
										
										
										
											2019-10-09 05:45:47 +08:00
										 |  |  | /***/ (() => { | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | eval("// Taken from http://coffeescript.org/\n\n// Objects:\nvar math, race;\n\nmath = {\n  root: Math.sqrt,\n  square: square,\n  cube: function(x) {\n    return x * square(x);\n  }\n};\n\n// Splats:\nrace = function(winner, ...runners) {\n  return print(winner, runners);\n};\n\n\n//# sourceURL=webpack:///./example.coffee?../../node_modules/coffee-loader/dist/cjs.js"); | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /***/ }) | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | ], | 
					
						
							|  |  |  | 0,[[0,1]]]); | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-18 21:10:26 +08:00
										 |  |  | ## eval-cheap-source-map.js
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * ATTENTION: An "eval-source-map" devtool has been used. | 
					
						
							|  |  |  |  * This devtool is not neither made for production nor for readable output files. | 
					
						
							|  |  |  |  * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. | 
					
						
							|  |  |  |  * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) | 
					
						
							|  |  |  |  * or disable the default devtool with "devtool: false". | 
					
						
							|  |  |  |  * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([[0],[ | 
					
						
							| 
									
										
										
										
											2017-12-14 17:58:03 +08:00
										 |  |  | /* 0 */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*!*********************************************************************!*\ | 
					
						
							|  |  |  |   !*** ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee ***! | 
					
						
							|  |  |  |   \*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							| 
									
										
										
										
											2018-12-19 21:05:17 +08:00
										 |  |  | /*! runtime requirements:  */ | 
					
						
							| 
									
										
										
										
											2019-10-09 05:45:47 +08:00
										 |  |  | /***/ (() => { | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | eval("// Taken from http://coffeescript.org/\n\n// Objects:\nvar math, race;\n\nmath = {\n  root: Math.sqrt,\n  square: square,\n  cube: function(x) {\n    return x * square(x);\n  }\n};\n\n// Splats:\nrace = function(winner, ...runners) {\n  return print(winner, runners);\n};\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMC5qcyIsInNvdXJjZXMiOlsid2VicGFjazovLy8uL2V4YW1wbGUuY29mZmVlP2VlNTgiXSwic291cmNlc0NvbnRlbnQiOlsiLy8gVGFrZW4gZnJvbSBodHRwOi8vY29mZmVlc2NyaXB0Lm9yZy9cblxuLy8gT2JqZWN0czpcbnZhciBtYXRoLCByYWNlO1xuXG5tYXRoID0ge1xuICByb290OiBNYXRoLnNxcnQsXG4gIHNxdWFyZTogc3F1YXJlLFxuICBjdWJlOiBmdW5jdGlvbih4KSB7XG4gICAgcmV0dXJuIHggKiBzcXVhcmUoeCk7XG4gIH1cbn07XG5cbi8vIFNwbGF0czpcbnJhY2UgPSBmdW5jdGlvbih3aW5uZXIsIC4uLnJ1bm5lcnMpIHtcbiAgcmV0dXJuIHByaW50KHdpbm5lciwgcnVubmVycyk7XG59O1xuIl0sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBOyIsInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///0\n"); | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /***/ }) | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | ], | 
					
						
							|  |  |  | 0,[[0,1]]]); | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-18 21:10:26 +08:00
										 |  |  | ## eval-cheap-module-source-map.js
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | ```javascript | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * ATTENTION: An "eval-source-map" devtool has been used. | 
					
						
							|  |  |  |  * This devtool is not neither made for production nor for readable output files. | 
					
						
							|  |  |  |  * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools. | 
					
						
							|  |  |  |  * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/) | 
					
						
							|  |  |  |  * or disable the default devtool with "devtool: false". | 
					
						
							|  |  |  |  * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/). | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | (self["webpackChunk"] = self["webpackChunk"] || []).push([[0],[ | 
					
						
							| 
									
										
										
										
											2017-12-14 17:58:03 +08:00
										 |  |  | /* 0 */ | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | /*!*********************************************************************!*\ | 
					
						
							|  |  |  |   !*** ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee ***! | 
					
						
							|  |  |  |   \*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-05-21 05:26:51 +08:00
										 |  |  | /*! unknown exports (runtime-defined) */ | 
					
						
							| 
									
										
										
										
											2018-12-19 21:05:17 +08:00
										 |  |  | /*! runtime requirements:  */ | 
					
						
							| 
									
										
										
										
											2019-10-09 05:45:47 +08:00
										 |  |  | /***/ (() => { | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | eval("// Taken from http://coffeescript.org/\n\n// Objects:\nvar math, race;\n\nmath = {\n  root: Math.sqrt,\n  square: square,\n  cube: function(x) {\n    return x * square(x);\n  }\n};\n\n// Splats:\nrace = function(winner, ...runners) {\n  return print(winner, runners);\n};\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vLy4vZXhhbXBsZS5jb2ZmZWU/MjQxNiJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFFVTs7O0FBQUEsSUFBQSxJQUFBLEVBQUE7O0FBQ1YsSUFBQSxHQUNFO0VBQUEsSUFBQSxFQUFRLElBQUksQ0FBQyxJQUFiO0VBQ0EsTUFBQSxFQUFRLE1BRFI7RUFFQSxJQUFBLEVBQVEsUUFBQSxDQUFDLENBQUQsQ0FBQTtXQUFPLENBQUEsR0FBSSxNQUFBLENBQU8sQ0FBUDtFQUFYO0FBRlIsRUFGUTs7O0FBT1YsSUFBQSxHQUFPLFFBQUEsQ0FBQyxNQUFELEVBQUEsR0FBUyxPQUFULENBQUE7U0FDTCxLQUFBLENBQU0sTUFBTixFQUFjLE9BQWQ7QUFESyIsInNvdXJjZXNDb250ZW50IjpbIiMgVGFrZW4gZnJvbSBodHRwOi8vY29mZmVlc2NyaXB0Lm9yZy9cblxuIyBPYmplY3RzOlxubWF0aCA9XG4gIHJvb3Q6ICAgTWF0aC5zcXJ0XG4gIHNxdWFyZTogc3F1YXJlXG4gIGN1YmU6ICAgKHgpIC0+IHggKiBzcXVhcmUgeFxuXG4jIFNwbGF0czpcbnJhY2UgPSAod2lubmVyLCBydW5uZXJzLi4uKSAtPlxuICBwcmludCB3aW5uZXIsIHJ1bm5lcnNcbiJdLCJmaWxlIjoiMC5qcyJ9\n//# sourceURL=webpack-internal:///0\n"); | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /***/ }) | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | ], | 
					
						
							|  |  |  | 0,[[0,1]]]); | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## cheap-module-source-map.js.map
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-13 00:51:26 +08:00
										 |  |  | ```json | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | {"version":3,"file":"./bundle-cheap-module-source-map.js","sources":["webpack:///./example.coffee"],"sourcesContent":["# Taken from http://coffeescript.org/\n\n# Objects:\nmath =\n  root:   Math.sqrt\n  square: square\n  cube:   (x) -> x * square x\n\n# Splats:\nrace = (winner, runners...) ->\n  print winner, runners\n"],"mappings":";;;;;;;;;AAEA;AACA;;AADA;AACA;AAAA;AACA;AACA;AACA;AAAA;AAAA;AAFA;AACA;;AAIA;AACA;AADA;AACA;AACA;A;;A","sourceRoot":""} | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ## cheap-source-map.js.map
 | 
					
						
							| 
									
										
										
										
											2019-04-09 02:29:40 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-13 00:51:26 +08:00
										 |  |  | ```json | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | {"version":3,"file":"./bundle-cheap-source-map.js","sources":["webpack:///./example.coffee"],"sourcesContent":["// Taken from http://coffeescript.org/\n\n// Objects:\nvar math, race;\n\nmath = {\n  root: Math.sqrt,\n  square: square,\n  cube: function(x) {\n    return x * square(x);\n  }\n};\n\n// Splats:\nrace = function(winner, ...runners) {\n  return print(winner, runners);\n};\n"],"mappings":";;;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;A;;A","sourceRoot":""} | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # webpack output
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ``` | 
					
						
							| 
									
										
										
										
											2020-09-21 04:39:12 +08:00
										 |  |  | asset ./runtime~bundle-eval.js 5.65 KiB [emitted] (name: runtime~bundle) | 
					
						
							|  |  |  | asset ./bundle-eval.js 1.32 KiB [emitted] (name: bundle) | 
					
						
							|  |  |  | Entrypoint bundle 6.96 KiB = ./runtime~bundle-eval.js 5.65 KiB ./bundle-eval.js 1.32 KiB | 
					
						
							|  |  |  | chunk ./bundle-eval.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-eval.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-eval-cheap-source-map.js 5.64 KiB [emitted] (name: runtime~bundle) | 
					
						
							|  |  |  | asset ./bundle-eval-cheap-source-map.js 1.98 KiB [emitted] (name: bundle) | 
					
						
							|  |  |  | Entrypoint bundle 7.62 KiB = ./runtime~bundle-eval-cheap-source-map.js 5.64 KiB ./bundle-eval-cheap-source-map.js 1.98 KiB | 
					
						
							|  |  |  | chunk ./bundle-eval-cheap-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-eval-cheap-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-eval-cheap-module-source-map.js 5.64 KiB [emitted] (name: runtime~bundle) | 
					
						
							|  |  |  | asset ./bundle-eval-cheap-module-source-map.js 2.12 KiB [emitted] (name: bundle) | 
					
						
							|  |  |  | Entrypoint bundle 7.76 KiB = ./runtime~bundle-eval-cheap-module-source-map.js 5.64 KiB ./bundle-eval-cheap-module-source-map.js 2.12 KiB | 
					
						
							|  |  |  | chunk ./bundle-eval-cheap-module-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-eval-cheap-module-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-eval-source-map.js 5.64 KiB [emitted] (name: runtime~bundle) | 
					
						
							|  |  |  | asset ./bundle-eval-source-map.js 2.12 KiB [emitted] (name: bundle) | 
					
						
							|  |  |  | Entrypoint bundle 7.76 KiB = ./runtime~bundle-eval-source-map.js 5.64 KiB ./bundle-eval-source-map.js 2.12 KiB | 
					
						
							|  |  |  | chunk ./bundle-eval-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-eval-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-cheap-source-map.js 5.15 KiB [emitted] (name: runtime~bundle) 1 related asset | 
					
						
							|  |  |  | asset ./bundle-cheap-source-map.js 717 bytes [emitted] (name: bundle) 1 related asset | 
					
						
							|  |  |  | Entrypoint bundle 5.85 KiB (4.92 KiB) = ./runtime~bundle-cheap-source-map.js 5.15 KiB ./bundle-cheap-source-map.js 717 bytes 2 auxiliary assets | 
					
						
							|  |  |  | chunk ./bundle-cheap-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-cheap-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-cheap-module-source-map.js 5.16 KiB [emitted] (name: runtime~bundle) 1 related asset | 
					
						
							|  |  |  | asset ./bundle-cheap-module-source-map.js 724 bytes [emitted] (name: bundle) 1 related asset | 
					
						
							|  |  |  | Entrypoint bundle 5.86 KiB (4.85 KiB) = ./runtime~bundle-cheap-module-source-map.js 5.16 KiB ./bundle-cheap-module-source-map.js 724 bytes 2 auxiliary assets | 
					
						
							|  |  |  | chunk ./bundle-cheap-module-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-cheap-module-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-inline-cheap-source-map.js 11 KiB [emitted] (name: runtime~bundle) | 
					
						
							|  |  |  | asset ./bundle-inline-cheap-source-map.js 1.41 KiB [emitted] (name: bundle) | 
					
						
							|  |  |  | Entrypoint bundle 12.4 KiB = ./runtime~bundle-inline-cheap-source-map.js 11 KiB ./bundle-inline-cheap-source-map.js 1.41 KiB | 
					
						
							|  |  |  | chunk ./bundle-inline-cheap-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-inline-cheap-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-inline-cheap-module-source-map.js 11 KiB [emitted] (name: runtime~bundle) | 
					
						
							|  |  |  | asset ./bundle-inline-cheap-module-source-map.js 1.31 KiB [emitted] (name: bundle) | 
					
						
							|  |  |  | Entrypoint bundle 12.4 KiB = ./runtime~bundle-inline-cheap-module-source-map.js 11 KiB ./bundle-inline-cheap-module-source-map.js 1.31 KiB | 
					
						
							|  |  |  | chunk ./bundle-inline-cheap-module-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-inline-cheap-module-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-source-map.js 5.14 KiB [emitted] (name: runtime~bundle) 1 related asset | 
					
						
							|  |  |  | asset ./bundle-source-map.js 711 bytes [emitted] (name: bundle) 1 related asset | 
					
						
							|  |  |  | Entrypoint bundle 5.84 KiB (4.91 KiB) = ./runtime~bundle-source-map.js 5.14 KiB ./bundle-source-map.js 711 bytes 2 auxiliary assets | 
					
						
							|  |  |  | chunk ./bundle-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-inline-source-map.js 11 KiB [emitted] (name: runtime~bundle) | 
					
						
							|  |  |  | asset ./bundle-inline-source-map.js 1.42 KiB [emitted] (name: bundle) | 
					
						
							|  |  |  | Entrypoint bundle 12.4 KiB = ./runtime~bundle-inline-source-map.js 11 KiB ./bundle-inline-source-map.js 1.42 KiB | 
					
						
							|  |  |  | chunk ./bundle-inline-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-inline-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-hidden-source-map.js 5.09 KiB [emitted] (name: runtime~bundle) 1 related asset | 
					
						
							|  |  |  | asset ./bundle-hidden-source-map.js 665 bytes [emitted] (name: bundle) 1 related asset | 
					
						
							|  |  |  | Entrypoint bundle 5.74 KiB (4.93 KiB) = ./runtime~bundle-hidden-source-map.js 5.09 KiB ./bundle-hidden-source-map.js 665 bytes 2 auxiliary assets | 
					
						
							|  |  |  | chunk ./bundle-hidden-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-hidden-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | asset ./runtime~bundle-nosources-source-map.js 5.15 KiB [emitted] (name: runtime~bundle) 1 related asset | 
					
						
							|  |  |  | asset ./bundle-nosources-source-map.js 721 bytes [emitted] (name: bundle) 1 related asset | 
					
						
							|  |  |  | Entrypoint bundle 5.86 KiB (1.17 KiB) = ./runtime~bundle-nosources-source-map.js 5.15 KiB ./bundle-nosources-source-map.js 721 bytes 2 auxiliary assets | 
					
						
							|  |  |  | chunk ./bundle-nosources-source-map.js (bundle) 256 bytes [initial] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   ../../node_modules/coffee-loader/dist/cjs.js!./example.coffee 256 bytes [built] [code generated] | 
					
						
							|  |  |  |     [used exports unknown] | 
					
						
							|  |  |  |     entry coffee-loader!./example.coffee bundle | 
					
						
							|  |  |  | chunk ./runtime~bundle-nosources-source-map.js (runtime~bundle) 2.57 KiB [entry] [rendered] | 
					
						
							|  |  |  |   > coffee-loader!./example.coffee bundle
 | 
					
						
							|  |  |  |   runtime modules 2.57 KiB 2 modules | 
					
						
							|  |  |  | webpack 5.0.0-beta.32 compiled successfully | 
					
						
							| 
									
										
										
										
											2017-04-13 06:04:10 +08:00
										 |  |  | ``` |