Skip to content

Commit

Permalink
update minimum supported vscode engine to match vscode-languageclient
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsemakula committed Feb 4, 2024
1 parent 169eaf4 commit 3037fe3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"license": "GPL-3.0",
"engines": {
"vscode": "^1.76.0"
"vscode": "^1.82.0"
},
"categories": [
"Programming Languages"
Expand Down Expand Up @@ -100,7 +100,7 @@
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.76.0",
"@types/vscode": "^1.82.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.53.0",
"@vscode/test-electron": "^2.3.8",
Expand Down
1 change: 1 addition & 0 deletions src/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export async function initializeProject(client: lsp_types.LanguageClient, manage
// Ref: https://github.com/microsoft/vscode-languageserver-node/issues/1272
// Ref: https://github.com/microsoft/vscode-languageserver-node/pull/1273
// FIXME: Remove this and intercept and save workspace edits in middleware when `middleware.workspace.handleApplyEdit` ships.
// NOTE: Expected in `vscode-languageclient` version 9.0.2
// Tracks creation of project files.
let hasCreatedLib = false;
let hasCreatedCargo = false;
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,10 @@
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a"
integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==

"@types/vscode@^1.76.0":
version "1.85.0"
resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.85.0.tgz#46beb07f0f626665b52d1e2294382b2bc63b602e"
integrity sha512-CF/RBon/GXwdfmnjZj0WTUMZN5H6YITOfBCP4iEZlOtVQXuzw6t7Le7+cR+7JzdMrnlm7Mfp49Oj2TuSXIWo3g==
"@types/vscode@^1.82.0":
version "1.86.0"
resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.86.0.tgz#5d5f233137b27e51d7ad1462600005741296357a"
integrity sha512-DnIXf2ftWv+9LWOB5OJeIeaLigLHF7fdXF6atfc7X5g2w/wVZBgk0amP7b+ub5xAuW1q7qP5YcFvOcit/DtyCQ==

"@typescript-eslint/eslint-plugin@^5.54.0":
version "5.62.0"
Expand Down

0 comments on commit 3037fe3

Please sign in to comment.