Skip to content

Commit b5cc832

Browse files
committed
feat: Update vscode-languageclient
1 parent 0fc29b4 commit b5cc832

File tree

4 files changed

+80
-56
lines changed

4 files changed

+80
-56
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## [unreleased]
4+
5+
- Update vscode-languageclient to support debugger inline values
6+
37
## [1.6.0] - 2024-12-05
48

59
- Bundle phpactor 2024.11.28.1

package-lock.json

+72-52
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
"typescript": "^5.0.0"
158158
},
159159
"dependencies": {
160-
"vscode-languageclient": "^6.1.3"
160+
"vscode-languageclient": "^9.0"
161161
},
162162
"repository": {
163163
"type": "git",

src/extension.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { LanguageClient, ServerOptions, LanguageClientOptions, StreamInfo } from 'vscode-languageclient'
1+
import { LanguageClient, ServerOptions, LanguageClientOptions, StreamInfo } from 'vscode-languageclient/node'
22

33
import * as vscode from 'vscode'
44
import { join } from 'path'
@@ -22,7 +22,7 @@ interface PhpactorConfig {
2222
launchServerArgs: string[]
2323
}
2424

25-
export function activate(context: vscode.ExtensionContext): void {
25+
export async function activate(context: vscode.ExtensionContext): Promise<void> {
2626
if (!checkPlatform()) {
2727
return
2828
}
@@ -49,7 +49,7 @@ export function activate(context: vscode.ExtensionContext): void {
4949
if (enable === false) return
5050

5151
languageClient = createClient(config)
52-
languageClient.start()
52+
await languageClient.start()
5353
}
5454

5555
export function deactivate(): Promise<void> | undefined {

0 commit comments

Comments
 (0)