Skip to content

Commit 9003c32

Browse files
committed
Updating xmldom to point to new artifact @xmldom/xmldom
1 parent d562d7a commit 9003c32

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"source-map-support": "^0.5.21",
6060
"tape": "^5.5.3",
6161
"tape-promise": "^4.0.0",
62-
"xmldom": "^0.6.0",
62+
"@xmldom/xmldom": "^0.8.2",
6363
"xpath.js": "^1.1.0"
6464
},
6565
"nyc": {

tests/cell.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const test = require('tape');
2-
const DOMParser = require('xmldom').DOMParser;
2+
const DOMParser = require('@xmldom/xmldom').DOMParser;
33
const xl = require('../source/index');
44

55
test('Cell coverage', (t) => {

tests/dataValidations.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const test = require('tape');
22
const xl = require('../source/index');
3-
const DOMParser = require('xmldom').DOMParser;
3+
const DOMParser = require('@xmldom/xmldom').DOMParser;
44
const DataValidation = require('../source/lib/worksheet/classes/dataValidation.js');
55

66
test('DataValidation Tests', (t) => {

tests/worksheet.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const tape = require('tape');
22
const _tape = require('tape-promise').default;
33
const test = _tape(tape);
44
const xl = require('../source/index');
5-
const DOMParser = require('xmldom').DOMParser;
5+
const DOMParser = require('@xmldom/xmldom').DOMParser;
66

77
test('Generate multiple sheets', (t) => {
88
let wb = new xl.Workbook();

0 commit comments

Comments
 (0)