Skip to content

Commit

Permalink
Update vscode engine to 1.88.0
Browse files Browse the repository at this point in the history
Needed for accessing the Test Coverage API in vscode
  • Loading branch information
TSonono committed Sep 18, 2024
1 parent ab37f11 commit 7b654f1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"syntaxes"
],
"engines": {
"vscode": "^1.67.0"
"vscode": "^1.88.0"
},
"categories": [
"Other",
Expand Down Expand Up @@ -3708,7 +3708,7 @@
"@types/rimraf": "^3.0.0",
"@types/sinon": "~9.0.10",
"@types/tmp": "^0.2.0",
"@types/vscode": "1.63.0",
"@types/vscode": "1.88.0",
"@types/which": "~2.0.0",
"@types/xml2js": "^0.4.8",
"@types/uuid": "~8.3.3",
Expand Down
4 changes: 2 additions & 2 deletions test/helpers/vscodefake/extensioncontext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class DefaultExtensionContext implements vscode.ExtensionContext {
get extensionPath(): string {
throw new Error(notImplementedErr);
}
get environmentVariableCollection(): vscode.EnvironmentVariableCollection {
get environmentVariableCollection(): vscode.GlobalEnvironmentVariableCollection {
throw new Error(notImplementedErr);
}
asAbsolutePath(relativePath: string): string {
Expand Down Expand Up @@ -61,7 +61,7 @@ export class SmokeTestExtensionContext implements vscode.ExtensionContext {
get extensionUri(): vscode.Uri {
throw new Error(notImplementedErr);
}
get environmentVariableCollection(): vscode.EnvironmentVariableCollection {
get environmentVariableCollection(): vscode.GlobalEnvironmentVariableCollection {
throw new Error(notImplementedErr);
}
asAbsolutePath(sub: string): string {
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -658,10 +658,10 @@
resolved "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.4.tgz"
integrity sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==

"@types/vscode@1.63.0":
version "1.63.0"
resolved "https://registry.npmjs.org/@types/vscode/-/vscode-1.63.0.tgz"
integrity sha512-iePu1axOi5WSThV6l2TYcciBIpAlMarjBC8H0y8L8ocsZLxh7MttzwFU3pjoItF5fRVGxHS0Hsvje9jO3yJsfw==
"@types/vscode@1.88.0":
version "1.88.0"
resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.88.0.tgz#2dc690237f7ef049942508c8609b6b9f5216b4d3"
integrity sha512-rWY+Bs6j/f1lvr8jqZTyp5arRMfovdxolcqGi+//+cPDOh8SBvzXH90e7BiSXct5HJ9HGW6jATchbRTpTJpEkw==

"@types/which@~2.0.0":
version "2.0.1"
Expand Down

0 comments on commit 7b654f1

Please sign in to comment.