Skip to content

Commit 88a93cc

Browse files
authored
Merge pull request #159 from atom-community/bump
2 parents 7d90bc0 + 6cf01e4 commit 88a93cc

File tree

3 files changed

+61
-65
lines changed

3 files changed

+61
-65
lines changed

lib/auto-languageclient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default class AutoLanguageClient {
109109
protected getInitializeParams(projectPath: string, lsProcess: LanguageServerProcess): ls.InitializeParams {
110110
const rootUri = Convert.pathToUri(projectPath)
111111
return {
112-
processId: lsProcess.pid,
112+
processId: lsProcess.pid !== undefined ? lsProcess.pid : null,
113113
rootPath: projectPath,
114114
rootUri,
115115
locale: atom.config.get("atom-i18n.locale") || "en",

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@
2828
"atomTestRunner": "./test/runner",
2929
"dependencies": {
3030
"@types/rimraf": "^3.0.0",
31-
"atom-ide-base": "^2.6.0",
31+
"atom-ide-base": "^3.0.0",
3232
"rimraf": "^3.0.2",
3333
"vscode-jsonrpc": "6.0.0",
3434
"vscode-languageserver-protocol": "3.16.0",
3535
"vscode-languageserver-types": "3.16.0",
36-
"zadeh": "3.0.0-beta.2"
36+
"zadeh": "3.0.0-beta.3"
3737
},
3838
"devDependencies": {
3939
"@types/atom": "^1.40.10",
40-
"@types/jasmine": "^3.7.1",
41-
"@types/node": "15.0.2",
42-
"atom-jasmine3-test-runner": "^5.2.4",
40+
"@types/jasmine": "^3.7.7",
41+
"@types/node": "15.12.2",
42+
"atom-jasmine3-test-runner": "^5.2.6",
4343
"eslint-config-atomic": "1.14.5",
4444
"prettier-config-atomic": "^2.0.5",
4545
"shx": "^0.3.3",
4646
"spawk": "^1.4.0",
47-
"typescript": "~4.2.4"
47+
"typescript": "~4.3.2"
4848
}
4949
}

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)