Skip to content

Commit

Permalink
fix: update atom-ide-base, zadeh, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jun 9, 2021
1 parent 7d90bc0 commit 6cf01e4
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 65 deletions.
2 changes: 1 addition & 1 deletion lib/auto-languageclient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export default class AutoLanguageClient {
protected getInitializeParams(projectPath: string, lsProcess: LanguageServerProcess): ls.InitializeParams {
const rootUri = Convert.pathToUri(projectPath)
return {
processId: lsProcess.pid,
processId: lsProcess.pid !== undefined ? lsProcess.pid : null,
rootPath: projectPath,
rootUri,
locale: atom.config.get("atom-i18n.locale") || "en",
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@
"atomTestRunner": "./test/runner",
"dependencies": {
"@types/rimraf": "^3.0.0",
"atom-ide-base": "^2.6.0",
"atom-ide-base": "^3.0.0",
"rimraf": "^3.0.2",
"vscode-jsonrpc": "6.0.0",
"vscode-languageserver-protocol": "3.16.0",
"vscode-languageserver-types": "3.16.0",
"zadeh": "3.0.0-beta.2"
"zadeh": "3.0.0-beta.3"
},
"devDependencies": {
"@types/atom": "^1.40.10",
"@types/jasmine": "^3.7.1",
"@types/node": "15.0.2",
"atom-jasmine3-test-runner": "^5.2.4",
"@types/jasmine": "^3.7.7",
"@types/node": "15.12.2",
"atom-jasmine3-test-runner": "^5.2.6",
"eslint-config-atomic": "1.14.5",
"prettier-config-atomic": "^2.0.5",
"shx": "^0.3.3",
"spawk": "^1.4.0",
"typescript": "~4.2.4"
"typescript": "~4.3.2"
}
}
112 changes: 54 additions & 58 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6cf01e4

Please sign in to comment.