Skip to content

Commit

Permalink
test: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Feb 5, 2024
1 parent 5a4dd58 commit 82dafe0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions examples/javascript-advanced/dist/webpack-5/bundle.js
Expand Up @@ -12,15 +12,15 @@
/***/ 968:
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {

eval("__webpack_require__(268);\n\nvar universal = __webpack_require__(180);\nvar h1 = document.createElement(\"h1\");\nh1.innerHTML = universal();\n\ndocument.body.appendChild(h1);\n\n\n//# sourceURL=webpack:///./example.js?");
eval("__webpack_require__(268);\n\nvar universal = __webpack_require__(612);\nvar h1 = document.createElement(\"h1\");\nh1.innerHTML = universal();\n\ndocument.body.appendChild(h1);\n\n\n//# sourceURL=webpack:///./example.js?");

/***/ }),

/***/ 180:
/***/ 612:
/***/ ((module) => {

"use strict";
eval("// This file is used for frontend and backend\n\n\n// If compiled by the html-webpack-plugin\n// HTML_WEBPACK_PLUGIN is set to true:\nvar backend = typeof HTML_WEBPACK_PLUGIN !== \"undefined\";\n\nmodule.exports = function () {\n return \"Hello World from \" + (backend ? \"backend\" : \"frontend\");\n};\n\n\n//# sourceURL=webpack:///./universial.js?");
eval("// This file is used for frontend and backend\n\n\n// If compiled by the html-webpack-plugin\n// HTML_WEBPACK_PLUGIN is set to true:\nvar backend = typeof HTML_WEBPACK_PLUGIN !== \"undefined\";\n\nmodule.exports = function () {\n return \"Hello World from \" + (backend ? \"backend\" : \"frontend\");\n};\n\n\n//# sourceURL=webpack:///./universal.js?");

/***/ }),

Expand Down
4 changes: 2 additions & 2 deletions examples/javascript/dist/webpack-5/bundle.js
@@ -1,7 +1,7 @@
/******/ (() => { // webpackBootstrap
/******/ var __webpack_modules__ = ({

/***/ 180:
/***/ 612:
/***/ ((module) => {

"use strict";
Expand Down Expand Up @@ -73,7 +73,7 @@ var __webpack_exports__ = {};
(() => {
__webpack_require__(268);

var universal = __webpack_require__(180);
var universal = __webpack_require__(612);
var h1 = document.createElement("h1");
h1.innerHTML = universal();

Expand Down
2 changes: 1 addition & 1 deletion examples/javascript/dist/webpack-5/index.html
@@ -1 +1 @@
<head><script defer="defer" src="bundle.js"></script><link href="styles.css" rel="stylesheet"></head>Hello World from backend2024-02-05T16:00:08.315Z<h2>Partial</h2><img src="55b19870aff2e53d1fb1.png"/>
<head><script defer="defer" src="bundle.js"></script><link href="styles.css" rel="stylesheet"></head>Hello World from backend2024-02-05T16:38:00.642Z<h2>Partial</h2><img src="55b19870aff2e53d1fb1.png"/>

0 comments on commit 82dafe0

Please sign in to comment.