@@ -158,8 +158,7 @@ module.exports = config;
158158 !*** ./images/file.png ***!
159159 \*************************/
160160/* ! default exports */
161- /* ! export default [not provided] [no usage info] [missing usage info prevents renaming] */
162- /* ! other exports [not provided] [no usage info] */
161+ /* ! exports [not provided] [no usage info] */
163162/* ! runtime requirements: __webpack_require__.p, module, __webpack_require__.* */
164163/** */ ((module , __unused_webpack_exports , __webpack_require__ ) => {
165164
@@ -171,8 +170,7 @@ module.exports = __webpack_require__.p + "images/89a353e9c515885abd8e.png";
171170 !*** ./images/file.jpg ***!
172171 \*************************/
173172/* ! default exports */
174- /* ! export default [not provided] [no usage info] [missing usage info prevents renaming] */
175- /* ! other exports [not provided] [no usage info] */
173+ /* ! exports [not provided] [no usage info] */
176174/* ! runtime requirements: module */
177175/** */ ((module ) => {
178176
@@ -184,8 +182,7 @@ module.exports = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAASABIAA...4CD/9M//Z"
184182 !*** ./images/file.svg ***!
185183 \*************************/
186184/* ! default exports */
187- /* ! export default [not provided] [no usage info] [missing usage info prevents renaming] */
188- /* ! other exports [not provided] [no usage info] */
185+ /* ! exports [not provided] [no usage info] */
189186/* ! runtime requirements: module */
190187/** */ ((module ) => {
191188
@@ -209,8 +206,7 @@ module.exports = __webpack_require__.p + "images/afc10c70ed4ce2b33593.svg";
209206 !*** ./content/file.text ***!
210207 \***************************/
211208/* ! default exports */
212- /* ! export default [not provided] [no usage info] [missing usage info prevents renaming] */
213- /* ! other exports [not provided] [no usage info] */
209+ /* ! exports [not provided] [no usage info] */
214210/* ! runtime requirements: module */
215211/** */ ((module ) => {
216212
@@ -222,8 +218,7 @@ module.exports = "a Ā 𐀀 文 🦄 Text\n";
222218 !*** ./content/bytes.svg ***!
223219 \***************************/
224220/* ! default exports */
225- /* ! export default [not provided] [no usage info] [missing usage info prevents renaming] */
226- /* ! other exports [not provided] [no usage info] */
221+ /* ! exports [not provided] [no usage info] */
227222/* ! runtime requirements: __webpack_require__.*, __webpack_require__.tb, module */
228223/** */ ((module , __unused_webpack_exports , __webpack_require__ ) => {
229224
@@ -247,12 +242,6 @@ module.exports = __webpack_require__.tb("PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmc
247242/** ****/ if (cachedModule !== undefined ) {
248243/** ****/ return cachedModule .exports ;
249244/** ****/ }
250- /** ****/ // Check if module exists (development only)
251- /** ****/ if (__webpack_modules__[moduleId] === undefined ) {
252- /** ****/ var e = new Error (" Cannot find module '" + moduleId + " '" );
253- /** ****/ e .code = ' MODULE_NOT_FOUND' ;
254- /** ****/ throw e;
255- /** ****/ }
256245/** ****/ // Create a new module (and put it into the cache)
257246/** ****/ var module = __webpack_module_cache__[moduleId] = {
258247/** ****/ // no module.id needed
@@ -261,6 +250,12 @@ module.exports = __webpack_require__.tb("PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmc
261250/** ****/ };
262251/** ****/
263252/** ****/ // Execute the module function
253+ /** ****/ if (! (moduleId in __webpack_modules__)) {
254+ /** ****/ delete __webpack_module_cache__[moduleId];
255+ /** ****/ var e = new Error (" Cannot find module '" + moduleId + " '" );
256+ /** ****/ e .code = ' MODULE_NOT_FOUND' ;
257+ /** ****/ throw e;
258+ /** ****/ }
264259/** ****/ __webpack_modules__[moduleId](module , module .exports , __webpack_require__);
265260/** ****/
266261/** ****/ // Return the exports of the module
@@ -290,19 +285,28 @@ module.exports = __webpack_require__.tb("PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmc
290285/** ****/ /* webpack/runtime/to binary */
291286/** ****/ (() => {
292287/** ****/ // define to binary helper
288+ /** ****/ const toImmutableBytes = (value ) => {
289+ /** ****/ var {buffer} = value;
290+ /** ****/ const throwErr = () => {
291+ /** ****/ throw new TypeError (' ArrayBuffer is immutable' );
292+ /** ****/ };
293+ /** ****/ Object .defineProperties (buffer, { immutable: { value: true }, resize: { value: throwErr }, transfer: { value: throwErr }, transferToFixedLength: { value: throwErr } });
294+ /** ****/ Object .freeze (buffer);
295+ /** ****/ return value;
296+ /** ****/ }
293297/** ****/ __webpack_require__ .tb = (() => {
294- /** ****/ var table = new Uint8Array (128 );
298+ /** ****/ const table = new Uint8Array (128 );
295299/** ****/ for (var i = 0 ; i < 64 ; i++ ) table[i < 26 ? i + 65 : i < 52 ? i + 71 : i < 62 ? i - 4 : i * 4 - 205 ] = i;
296300/** ****/ return (base64 ) => {
297- /** ****/ var n = base64 .length , bytes = new Uint8Array ((n - (base64[n - 1 ] == ' =' ) - (base64[n - 2 ] == ' =' )) * 3 / 4 | 0 );
301+ /** ****/ const n = base64 .length , bytes = new Uint8Array ((n - (base64[n - 1 ] == ' =' ) - (base64[n - 2 ] == ' =' )) * 3 / 4 | 0 );
298302/** ****/ for (var i = 0 , j = 0 ; i < n;) {
299- /** ****/ var c0 = table[base64 .charCodeAt (i++ )], c1 = table[base64 .charCodeAt (i++ )];
300- /** ****/ var c2 = table[base64 .charCodeAt (i++ )], c3 = table[base64 .charCodeAt (i++ )];
303+ /** ****/ const c0 = table[base64 .charCodeAt (i++ )], c1 = table[base64 .charCodeAt (i++ )];
304+ /** ****/ const c2 = table[base64 .charCodeAt (i++ )], c3 = table[base64 .charCodeAt (i++ )];
301305/** ****/ bytes[j++ ] = (c0 << 2 ) | (c1 >> 4 );
302306/** ****/ bytes[j++ ] = (c1 << 4 ) | (c2 >> 2 );
303307/** ****/ bytes[j++ ] = (c2 << 6 ) | c3;
304308/** ****/ }
305- /** ****/ return bytes
309+ /** ****/ return toImmutableBytes ( bytes)
306310/** ****/ }
307311/** ****/ })();
308312/** ****/ })();
@@ -490,10 +494,10 @@ files.forEach(item => {
490494asset output .js 20 KiB [emitted] (name: main)
491495asset images/ 89a353e9c515885abd8e .png 14.6 KiB [emitted] [immutable] [from: images/ file .png ] (auxiliary name: main)
492496asset images/ afc10c70ed4ce2b33593 .svg 656 bytes [emitted] [immutable] [from: images/ url .svg ] (auxiliary name: main)
493- chunk (runtime: main) output .js (main) 12.4 KiB (javascript) 15.2 KiB (asset) 1.48 KiB (runtime) [entry] [rendered]
497+ chunk (runtime: main) output .js (main) 12.4 KiB (javascript) 15.2 KiB (asset) 1.85 KiB (runtime) [entry] [rendered]
494498 > ./ example .js main
495499 dependent modules 9.59 KiB (javascript) 15.2 KiB (asset) [dependent] 6 modules
496- runtime modules 1.48 KiB 5 modules
500+ runtime modules 1.85 KiB 5 modules
497501 ./ example .js 2.85 KiB [built] [code generated]
498502 [no exports ]
499503 [used exports unknown]
0 commit comments