update dependencies
This commit is contained in:
parent
6ef7f7eb9e
commit
37618c49eb
5 changed files with 481 additions and 105 deletions
|
@ -614,8 +614,8 @@
|
|||
"devDependencies": {
|
||||
"@chemzqm/tsconfig": "^0.0.3",
|
||||
"@types/fast-diff": "^1.2.0",
|
||||
"@types/node": "^14.0.23",
|
||||
"coc.nvim": "^0.0.77",
|
||||
"@types/node": "^10.12.0",
|
||||
"coc.nvim": "^0.0.79",
|
||||
"fast-diff": "^1.2.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"semver": "^7.3.2",
|
||||
|
|
|
@ -164,7 +164,7 @@ export class AutoFixCommand implements Command {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (edits.length) await document.applyEdits(workspace.nvim, edits)
|
||||
if (edits.length) await document.applyEdits(edits)
|
||||
if (command) commands.executeCommand(command)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -160,7 +160,6 @@ export default class LanguageProvider {
|
|||
if (this.description.id == 'typescript') {
|
||||
this.disposables.push(
|
||||
languages.registerWorkspaceSymbolProvider(
|
||||
languageIds,
|
||||
new WorkspaceSymbolProvider(client, languageIds))
|
||||
)
|
||||
}
|
||||
|
|
|
@ -105,7 +105,7 @@ export class TypeScriptVersionProvider {
|
|||
|
||||
public get globalVersion(): TypeScriptVersion | undefined {
|
||||
let { globalTsdk } = this.configuration
|
||||
if (globalTsdk) return new TypeScriptVersion(globalTsdk)
|
||||
if (globalTsdk) return new TypeScriptVersion(workspace.expand(globalTsdk))
|
||||
return undefined
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue