[mod] update xqlint

This commit is contained in:
Andy Bunce 2023-02-09 11:45:55 +00:00
parent b2f40425e3
commit 497f7bb526
4 changed files with 1134 additions and 725 deletions

View File

@ -1,3 +1,6 @@
# 0.0.67 (2023-02-09)
Update xqlint 0.1.2
# 0.0.64 (2023-01-26)
* add simple hover display
* Update `xqlint.d.ts` to support newer `tsc.exe`. This reduces size of vsix from 600kb to 300kb

1846
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
"name": "vscode-basex",
"displayName": "BaseX tools",
"description": "BaseX tools: XQuery, XML, XPath Tools for Visual Studio Code",
"version": "0.0.66",
"version": "0.0.68",
"preview": true,
"publisher": "quodatum",
"author": "Andy Bunce (https://github.com/Quodatum)",
@ -21,7 +21,7 @@
"url": "https://github.com/Quodatum/vscode-basex/issues"
},
"engines": {
"vscode": "^1.63.0"
"vscode": "^1.73.0"
},
"categories": [
"Formatters",
@ -305,7 +305,7 @@
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^14.18.12",
"@types/vscode": "^1.63.0",
"@types/vscode": "^1.73.0",
"@types/xmldom": "^0.1.31",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
@ -317,7 +317,7 @@
"typescript": "^4.7.3"
},
"dependencies": {
"@quodatum/xqlint": "^0.1.0",
"@quodatum/xqlint": "^0.1.2",
"@xmldom/xmldom": "^0.8.1",
"xpath": "0.0.32"
}

View File

@ -23,7 +23,7 @@ const replacerFunc = () => {
};
export function dump(obj :object) {
return JSON.stringify(obj,replacerFunc())
return JSON.stringify(obj,replacerFunc(),1)
}
export class channel {