Skip to content

Commit ae8056c

Browse files
authored
Merge pull request #424 from berberman/languageclient-7.0
Update vscode-languageclient to 7.0.0
2 parents 8f035a4 + 40b1e3e commit ae8056c

File tree

4 files changed

+54
-31
lines changed

4 files changed

+54
-31
lines changed

package-lock.json

Lines changed: 50 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"license": "MIT",
77
"publisher": "haskell",
88
"engines": {
9-
"vscode": "^1.39.0"
9+
"vscode": "^1.52.0"
1010
},
1111
"keywords": [
1212
"language",
@@ -379,7 +379,7 @@
379379
"lru-cache": "^4.1.5",
380380
"request": "^2.88.2",
381381
"request-promise-native": "^1.0.8",
382-
"vscode-languageclient": "6.1.3",
382+
"vscode-languageclient": "^7.0.0",
383383
"yauzl": "^2.10.0"
384384
}
385385
}

src/docsBrowser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export namespace DocsBrowser {
108108
});
109109
}
110110

111-
function processLink(ms: MarkedString): string | MarkdownString {
111+
function processLink(ms: MarkdownString | MarkedString): string | MarkdownString {
112112
function transform(s: string): string {
113113
return s.replace(
114114
/\[(.+)\]\((file:.+\/doc\/(?:.*html\/libraries\/)?([^\/]+)\/(src\/)?(.+\.html#?.*))\)/gi,

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import {
1919
RevealOutputChannelOn,
2020
ServerOptions,
2121
TransportKind,
22-
} from 'vscode-languageclient';
22+
} from 'vscode-languageclient/node';
2323
import { CommandNames } from './commands/constants';
2424
import { ImportIdentifier } from './commands/importIdentifier';
2525
import { DocsBrowser } from './docsBrowser';

0 commit comments

Comments
 (0)