Skip to content

Commit

Permalink
Fixes all issues after package upgrades.
Browse files Browse the repository at this point in the history
  • Loading branch information
zorkow committed Oct 26, 2023
1 parent 3e2d80d commit c54770a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"homepage": "https://github.com/speech-rule-engine/sre-tests",
"dependencies": {
"@google-cloud/storage": "7.3.2",
"@xmldom/xmldom": "^0.9.0-beta.8",
"@xmldom/xmldom": "^0.9.0-beta.11",
"eslint-config-prettier": "^9.0.0",
"esm": "3.2.25",
"firebase-admin": "^11.11.0",
Expand All @@ -67,7 +67,7 @@
"rimraf": "^5.0.5",
"terser-webpack-plugin": "5.3.9",
"ts-loader": "9.5.0",
"typescript": "5.2.2",
"typescript": "^5.2.2",
"typescript-tools": "0.3.1",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
Expand Down
3 changes: 2 additions & 1 deletion ts/classes/semantic_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,8 @@ export class SemanticTreeTest extends SemanticBlacklistTest {
const xmls = new xmldom.XMLSerializer();
this.customizeXml(sxml);
const dp = new xmldom.DOMParser();
const xml = dp.parseFromString(this.prepareStree(sml), 'text/xml');
const xml = dp.parseFromString(
this.prepareStree(sml), xmldom.MIME_TYPE.XML_TEXT);
this.assert.equal(
xmls.serializeToString(sxml),
xmls.serializeToString(xml)
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
"target": "ES6",
"module": "nodenext",
"moduleResolution": "nodenext",
"declaration": true,
"declaration": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"downlevelIteration": true,
"noLib": false,
"skipLibCheck": true,
"alwaysStrict": true,
"sourceMap": false,
"paths": {
Expand Down

0 comments on commit c54770a

Please sign in to comment.