Skip to content

Commit 82ed663

Browse files
refactor: fix compatibility with old browsers (#1000)
1 parent 7585663 commit 82ed663

File tree

9 files changed

+9
-7
lines changed

9 files changed

+9
-7
lines changed

src/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,9 @@ class MiniCssExtractPlugin {
888888
])
889889
: Template.asString([
890890
"if (oldTag) {",
891-
Template.indent(["oldTag.after(linkTag);"]),
891+
Template.indent([
892+
"oldTag.parentNode.insertBefore(linkTag, oldTag.nextSibling);",
893+
]),
892894
"} else {",
893895
Template.indent(["document.head.appendChild(linkTag);"]),
894896
"}",

test/cases/chunkFilename-fullhash/expected/webpack-5-importModule/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ __webpack_require__.r(__webpack_exports__);
7373
/******/
7474
/******/ /* webpack/runtime/getFullHash */
7575
/******/ (() => {
76-
/******/ __webpack_require__.h = () => ("32c982869d9446e21cfa")
76+
/******/ __webpack_require__.h = () => ("945622d4f51f3fe3a0d0")
7777
/******/ })();
7878
/******/
7979
/******/ /* webpack/runtime/global */
@@ -196,7 +196,7 @@ __webpack_require__.r(__webpack_exports__);
196196
/******/ linkTag.href = fullhref;
197197
/******/
198198
/******/ if (oldTag) {
199-
/******/ oldTag.after(linkTag);
199+
/******/ oldTag.parentNode.insertBefore(linkTag, oldTag.nextSibling);
200200
/******/ } else {
201201
/******/ document.head.appendChild(linkTag);
202202
/******/ }

test/cases/chunkFilename-fullhash/expected/webpack-5/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ __webpack_require__.r(__webpack_exports__);
7373
/******/
7474
/******/ /* webpack/runtime/getFullHash */
7575
/******/ (() => {
76-
/******/ __webpack_require__.h = () => ("70641d5edcf4cb37424c")
76+
/******/ __webpack_require__.h = () => ("de494c1e7411c41d8362")
7777
/******/ })();
7878
/******/
7979
/******/ /* webpack/runtime/global */
@@ -196,7 +196,7 @@ __webpack_require__.r(__webpack_exports__);
196196
/******/ linkTag.href = fullhref;
197197
/******/
198198
/******/ if (oldTag) {
199-
/******/ oldTag.after(linkTag);
199+
/******/ oldTag.parentNode.insertBefore(linkTag, oldTag.nextSibling);
200200
/******/ } else {
201201
/******/ document.head.appendChild(linkTag);
202202
/******/ }

test/cases/hmr/expected/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ __webpack_require__.r(__webpack_exports__);
959959
/******/ linkTag.href = fullhref;
960960
/******/
961961
/******/ if (oldTag) {
962-
/******/ oldTag.after(linkTag);
962+
/******/ oldTag.parentNode.insertBefore(linkTag, oldTag.nextSibling);
963963
/******/ } else {
964964
/******/ document.head.appendChild(linkTag);
965965
/******/ }

test/cases/insert-undefined/expected/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
/******/ linkTag.href = fullhref;
181181
/******/
182182
/******/ if (oldTag) {
183-
/******/ oldTag.after(linkTag);
183+
/******/ oldTag.parentNode.insertBefore(linkTag, oldTag.nextSibling);
184184
/******/ } else {
185185
/******/ document.head.appendChild(linkTag);
186186
/******/ }

0 commit comments

Comments
 (0)