Skip to content

Commit

Permalink
Merge pull request #106 from karfau/upgrade-xmldom
Browse files Browse the repository at this point in the history
Update dependency xmldom
  • Loading branch information
kafawcett committed Aug 22, 2022
2 parents c808f0d + ce982b1 commit e723afc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -51,13 +51,13 @@
}
],
"dependencies": {
"@xmldom/xmldom": "^0.8.0",
"callsite": "^1.0.0",
"debug": "^4.3.1",
"lodash": "^4.17.21",
"machina": "^4.0.2",
"mssql": "~2.3.2",
"tedious": "~1.13.2",
"xmldom": "^0.6.0"
"tedious": "~1.13.2"
},
"devDependencies": {
"chai": "^4.3.4",
Expand Down
2 changes: 1 addition & 1 deletion src/asTable.js
@@ -1,6 +1,6 @@
const _ = require( "lodash" );
const sql = require( "mssql" );
const xmldom = require( "xmldom" );
const xmldom = require( "@xmldom/xmldom" );
const domImplementation = new xmldom.DOMImplementation();
const xmlSerializer = new xmldom.XMLSerializer();
const buildTableVariableSql = require( "./build-table-variable-sql" );
Expand Down

0 comments on commit e723afc

Please sign in to comment.