[mod] build 0.0.53
This commit is contained in:
		
							parent
							
								
									b3f47dc553
								
							
						
					
					
						commit
						5bc83682a5
					
				
					 4 changed files with 1866 additions and 1376 deletions
				
			
		| 
						 | 
					@ -21,6 +21,8 @@ Detailed release notes are available [here](https://git.quodatum.duckdns.org/apb
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Issues
 | 
					## Issues
 | 
				
			||||||
Run into a bug? Report it [here](https://git.quodatum.duckdns.org/apb/vscode-basex/issues).
 | 
					Run into a bug? Report it [here](https://git.quodatum.duckdns.org/apb/vscode-basex/issues).
 | 
				
			||||||
 | 
					## Development
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## build
 | 
					## build
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										3234
									
								
								package-lock.json
									
										
									
										generated
									
									
									
								
							
							
						
						
									
										3234
									
								
								package-lock.json
									
										
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							| 
						 | 
					@ -2,7 +2,7 @@
 | 
				
			||||||
  "name": "vscode-basex",
 | 
					  "name": "vscode-basex",
 | 
				
			||||||
  "displayName": "BaseX tools",
 | 
					  "displayName": "BaseX tools",
 | 
				
			||||||
  "description": "BaseX tools: XQuery, XML, XPath Tools for Visual Studio Code",
 | 
					  "description": "BaseX tools: XQuery, XML, XPath Tools for Visual Studio Code",
 | 
				
			||||||
  "version": "0.0.52",
 | 
					  "version": "0.0.53",
 | 
				
			||||||
  "preview": true,
 | 
					  "preview": true,
 | 
				
			||||||
  "publisher": "quodatum",
 | 
					  "publisher": "quodatum",
 | 
				
			||||||
  "author": "Andy Bunce (https://github.com/Quodatum)",
 | 
					  "author": "Andy Bunce (https://github.com/Quodatum)",
 | 
				
			||||||
| 
						 | 
					@ -316,7 +316,7 @@
 | 
				
			||||||
    "typescript": "^4.7.3"
 | 
					    "typescript": "^4.7.3"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "dependencies": {
 | 
					  "dependencies": {
 | 
				
			||||||
    "@quodatum/xqlint": "^0.0.11",
 | 
					    "@quodatum/xqlint": "^0.0.13",
 | 
				
			||||||
    "@xmldom/xmldom": "^0.8.1",
 | 
					    "@xmldom/xmldom": "^0.8.1",
 | 
				
			||||||
    "xpath": "0.0.32"
 | 
					    "xpath": "0.0.32"
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -51,7 +51,7 @@ export class Symbols implements DocumentSymbolProvider {
 | 
				
			||||||
      vars.children.push(info);
 | 
					      vars.children.push(info);
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const funs=makeSymbol("Variables", "", SymbolKind.Function, prolog)
 | 
					    const funs=makeSymbol("Functions", "", SymbolKind.Function, prolog)
 | 
				
			||||||
    funs.children=[]
 | 
					    funs.children=[]
 | 
				
			||||||
    xqdoc.functions.forEach(function (f: FunTypes) {
 | 
					    xqdoc.functions.forEach(function (f: FunTypes) {
 | 
				
			||||||
      const name = f.name + "#" + f.params.length;
 | 
					      const name = f.name + "#" + f.params.length;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue