update dependencies

This commit is contained in:
Qiming Zhao 2020-11-13 12:43:45 +08:00
parent 6ef7f7eb9e
commit 37618c49eb
5 changed files with 481 additions and 105 deletions

View file

@ -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",

View file

@ -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)
}
}

View file

@ -160,7 +160,6 @@ export default class LanguageProvider {
if (this.description.id == 'typescript') {
this.disposables.push(
languages.registerWorkspaceSymbolProvider(
languageIds,
new WorkspaceSymbolProvider(client, languageIds))
)
}

View file

@ -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
}

577
yarn.lock

File diff suppressed because it is too large Load diff