Skip to content

Commit 77b7d7e

Browse files
authored
Merge pull request #1752 from chriswhite199/xmldom-upgrade
2 parents 6edf731 + e1c73a6 commit 77b7d7e

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

package-lock.json

+9-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
"unorm": "^1.6.0",
175175
"utf8": "^3.0.0",
176176
"vkbeautify": "^0.99.3",
177-
"xmldom": "^0.6.0",
177+
"@xmldom/xmldom": "^0.8.0",
178178
"xpath": "0.0.34",
179179
"xregexp": "^5.1.1",
180180
"zlibjs": "^0.3.1"

src/core/operations/CSSSelector.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import Operation from "../Operation.mjs";
88
import OperationError from "../errors/OperationError.mjs";
9-
import xmldom from "xmldom";
9+
import xmldom from "@xmldom/xmldom";
1010
import nwmatcher from "nwmatcher";
1111

1212
/**

src/core/operations/XPathExpression.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import Operation from "../Operation.mjs";
88
import OperationError from "../errors/OperationError.mjs";
9-
import xmldom from "xmldom";
9+
import xmldom from "@xmldom/xmldom";
1010
import xpath from "xpath";
1111

1212
/**

0 commit comments

Comments
 (0)