Skip to content

Commit e5036c8

Browse files
committed
chore: upgrade dev dependency to latest webpack version
1 parent 2e30bb1 commit e5036c8

File tree

22 files changed

+49
-8
lines changed

22 files changed

+49
-8
lines changed

examples/chunk-optimization/dist/webpack-5/entryA.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ document.body.appendChild(h1);
176176
/******/ })();
177177
/******/
178178
/************************************************************************/
179+
/******/
179180
/******/ // run startup
180-
/******/ __webpack_require__.x();
181+
/******/ var __webpack_exports__ = __webpack_require__.x();
182+
/******/
181183
/******/ })()
182184
;

examples/chunk-optimization/dist/webpack-5/entryB.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,9 @@ document.body.appendChild(h1);
175175
/******/ })();
176176
/******/
177177
/************************************************************************/
178+
/******/
178179
/******/ // run startup
179-
/******/ __webpack_require__.x();
180+
/******/ var __webpack_exports__ = __webpack_require__.x();
181+
/******/
180182
/******/ })()
181183
;

examples/custom-insertion-position/dist/webpack-5/bundle.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/******/ (() => { // webpackBootstrap
2+
var __webpack_exports__ = {};
23
var h1 = document.createElement('h1');
34
h1.innerHTML = 'Hello world!';
45
document.body.appendChild(h1);

examples/custom-template/dist/webpack-5/bundle.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ __webpack_require__.r(__webpack_exports__);
4949
/******/ })();
5050
/******/
5151
/************************************************************************/
52+
var __webpack_exports__ = {};
53+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
5254
(() => {
5355
__webpack_require__(636);
5456
var h1 = document.createElement('h1');

examples/default/dist/webpack-5/bundle.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,8 @@ module.exports = function (list, options) {
464464
/******/ })();
465465
/******/
466466
/************************************************************************/
467+
var __webpack_exports__ = {};
468+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
467469
(() => {
468470
__webpack_require__(965);
469471
var h1 = document.createElement('h1');

examples/favicon/dist/webpack-5/bundle.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ __webpack_require__.r(__webpack_exports__);
4949
/******/ })();
5050
/******/
5151
/************************************************************************/
52+
var __webpack_exports__ = {};
53+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
5254
(() => {
5355
__webpack_require__(636);
5456
var h1 = document.createElement('h1');

examples/html-loader/dist/webpack-5/bundle.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ __webpack_require__.r(__webpack_exports__);
4949
/******/ })();
5050
/******/
5151
/************************************************************************/
52+
var __webpack_exports__ = {};
53+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
5254
(() => {
5355
__webpack_require__(636);
5456
var h1 = document.createElement('h1');

examples/inline/dist/webpack-5/bundle.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ __webpack_require__.r(__webpack_exports__);
4949
/******/ })();
5050
/******/
5151
/************************************************************************/
52+
var __webpack_exports__ = {};
53+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
5254
(() => {
5355

5456
__webpack_require__(636);

examples/inline/dist/webpack-5/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@
5151
/******/ })();
5252
/******/
5353
/************************************************************************/
54+
var __webpack_exports__ = {};
55+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
5456
(() => {
5557

5658
__webpack_require__(636);

examples/javascript-advanced/dist/webpack-5/bundle.js

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99
/******/ (() => { // webpackBootstrap
1010
/******/ var __webpack_modules__ = ({
1111

12+
/***/ 144:
13+
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
14+
15+
eval("__webpack_require__(636);\n\nvar universal = __webpack_require__(184);\nvar h1 = document.createElement('h1');\nh1.innerHTML = universal();\n\ndocument.body.appendChild(h1);\n\n\n//# sourceURL=webpack:///./example.js?");
16+
17+
/***/ }),
18+
1219
/***/ 184:
1320
/***/ ((module) => {
1421

@@ -63,9 +70,11 @@ eval("__webpack_require__.r(__webpack_exports__);\n// extracted by mini-css-extr
6370
/******/ })();
6471
/******/
6572
/************************************************************************/
66-
(() => {
67-
eval("__webpack_require__(636);\n\nvar universal = __webpack_require__(184);\nvar h1 = document.createElement('h1');\nh1.innerHTML = universal();\n\ndocument.body.appendChild(h1);\n\n\n//# sourceURL=webpack:///./example.js?");
68-
})();
69-
73+
/******/
74+
/******/ // startup
75+
/******/ // Load entry module and return exports
76+
/******/ // This entry module can't be inlined because the eval devtool is used.
77+
/******/ var __webpack_exports__ = __webpack_require__(144);
78+
/******/
7079
/******/ })()
7180
;

0 commit comments

Comments
 (0)