Skip to content

Commit c880c61

Browse files
authored
Move to vscode version 1.82 (#1312)
1 parent 864c8c5 commit c880c61

File tree

7 files changed

+12
-42
lines changed

7 files changed

+12
-42
lines changed

client-node-tests/package-lock.json

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

client-node-tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@types/minimatch": "^3.0.5",
3939
"@types/sinon": "^10.0.2",
4040
"@types/uuid": "^8.3.1",
41-
"@types/vscode": "1.79.0",
41+
"@types/vscode": "1.82.0",
4242
"find-process": "^1.4.7",
4343
"glob": "^7.1.7",
4444
"sinon": "^11.1.2",

client/package-lock.json

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

client/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"engines": {
8-
"vscode": "^1.79.0"
8+
"vscode": "^1.82.0"
99
},
1010
"repository": {
1111
"type": "git",
@@ -24,7 +24,7 @@
2424
"devDependencies": {
2525
"@types/minimatch": "^3.0.5",
2626
"@types/semver": "^7.3.10",
27-
"@types/vscode": "1.79.0",
27+
"@types/vscode": "1.82.0",
2828
"shx": "^0.3.4"
2929
},
3030
"dependencies": {

client/src/common/formatting.ts

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* Copyright (c) Microsoft Corporation. All rights reserved.
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
* ------------------------------------------------------------------------------------------ */
5-
/// <reference path="../../typings/vscode.proposed.formatMultipleRanges.d.ts" />
65

76
import {
87
languages as Languages, Disposable, TextDocument, ProviderResult, Range as VRange, Position as VPosition, TextEdit as VTextEdit, FormattingOptions as VFormattingOptions,

client/src/node/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import semverSatisfies = require('semver/functions/satisfies');
2323
export * from 'vscode-languageserver-protocol/node';
2424
export * from '../common/api';
2525

26-
const REQUIRED_VSCODE_VERSION = '^1.78.0'; // do not change format, updated by `updateVSCode` script
26+
const REQUIRED_VSCODE_VERSION = '^1.82.0'; // do not change format, updated by `updateVSCode` script
2727

2828
export enum TransportKind {
2929
stdio,

client/typings/vscode.proposed.formatMultipleRanges.d.ts

-29
This file was deleted.

0 commit comments

Comments
 (0)