Skip to content

Commit

Permalink
Update dependencies (#1592)
Browse files Browse the repository at this point in the history
* Move to latest compiler and NodeJS

* Update dependencies
  • Loading branch information
dbaeumer authored Dec 12, 2024
1 parent 906f5fb commit b139754
Show file tree
Hide file tree
Showing 18 changed files with 1,607 additions and 873 deletions.
722 changes: 517 additions & 205 deletions client-node-tests/package-lock.json

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions client-node-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,15 @@
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/minimatch": "^5.1.2",
"@types/sinon": "^10.0.20",
"@types/uuid": "^9.0.6",
"@types/sinon": "^17.0.3",
"@types/uuid": "^10.0.0",
"@types/vscode": "1.91.0",
"@vscode/test-electron": "^2.3.9",
"@types/node": "20.17.9",
"@vscode/test-electron": "^2.4.1",
"find-process": "^1.4.7",
"glob": "^10.3.10",
"sinon": "^17.0.0",
"uuid": "^9.0.1"
"glob": "^11.0.0",
"sinon": "^19.0.2",
"uuid": "^11.0.3"
},
"enabledApiProposals": []
}
11 changes: 11 additions & 0 deletions client-node-tests/src/converter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
declare module 'vscode' {

export interface CodeAction {
/**
* Marks this as an AI action.
*
* Ex: A quick fix should be marked AI if it invokes AI.
*/
isAI?: boolean;
}
}

import { strictEqual, deepEqual, ok, deepStrictEqual } from 'assert';

Expand Down
39 changes: 11 additions & 28 deletions client/package-lock.json

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

4 changes: 2 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"shx": "^0.3.4"
},
"dependencies": {
"minimatch": "^9.0.3",
"semver": "^7.6.0",
"minimatch": "^10.0.1",
"semver": "^7.6.3",
"vscode-languageserver-protocol": "3.17.6-next.10"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion client/src/common/codeConverter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
/// <reference path="../../typings/vscode.proposed.codeActionAI.d.ts" />
/// <reference path="../../typings/vscode.proposed.codeActionAI.d.ts" preserve: true/>

import * as code from 'vscode';
import * as proto from 'vscode-languageserver-protocol';
Expand Down
2 changes: 1 addition & 1 deletion client/src/common/protocolConverter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
/// <reference path="../../typings/vscode.proposed.codeActionAI.d.ts" />
/// <reference path="../../typings/vscode.proposed.codeActionAI.d.ts" preserve: true/>

import * as code from 'vscode';
import * as ls from 'vscode-languageserver-protocol';
Expand Down
9 changes: 5 additions & 4 deletions jsonrpc/package-lock.json

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

2 changes: 1 addition & 1 deletion jsonrpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
},
"devDependencies": {
"@types/msgpack-lite": "^0.1.10",
"@types/msgpack-lite": "^0.1.11",
"msgpack-lite": "^0.1.26"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion jsonrpc/src/common/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
/// <reference path="../../typings/thenable.d.ts" />
/// <reference path="../../typings/thenable.d.ts" preserve="true"/>

import {
Message, MessageSignature, RequestMessage, RequestType, RequestType0, RequestType1, RequestType2, RequestType3, RequestType4, RequestType5, RequestType6,
Expand Down
2 changes: 1 addition & 1 deletion jsonrpc/src/common/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* ------------------------------------------------------------------------------------------ */
/// <reference path="../../typings/thenable.d.ts" />
/// <reference path="../../typings/thenable.d.ts" preserve="true"/>

import RAL from './ral';
import * as Is from './is';
Expand Down
Loading

0 comments on commit b139754

Please sign in to comment.