Skip to content

Commit f2ff7d5

Browse files
authored
Update dependencies (#1271)
1 parent a1c888b commit f2ff7d5

18 files changed

+1941
-1220
lines changed

client-node-tests/package-lock.json

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

client-node-tests/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"main": "./extension.js",
1818
"contributes": {},
1919
"scripts": {
20-
"clean": "node ../node_modules/rimraf/bin.js lib",
20+
"clean": "node ../node_modules/.bin/rimraf lib",
2121
"compile": "node ../build/bin/tsc -b ./tsconfig.json",
2222
"watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
2323
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
@@ -30,7 +30,7 @@
3030
},
3131
"dependencies": {
3232
"minimatch": "^3.0.4",
33-
"vscode-languageserver": "8.2.0-next.0",
33+
"vscode-languageserver": "8.2.0-next.2",
3434
"vscode-uri": "3.0.3"
3535
},
3636
"devDependencies": {

client/package-lock.json

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

client/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-languageclient",
33
"description": "VSCode Language client implementation",
4-
"version": "8.2.0-next.0",
4+
"version": "8.2.0-next.2",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"engines": {
@@ -30,7 +30,7 @@
3030
"dependencies": {
3131
"minimatch": "^5.1.0",
3232
"semver": "^7.3.7",
33-
"vscode-languageserver-protocol": "3.17.4-next.0"
33+
"vscode-languageserver-protocol": "3.17.4-next.2"
3434
},
3535
"scripts": {
3636
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
@@ -40,7 +40,7 @@
4040
"watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
4141
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
4242
"test": "cd ../client-node-tests && npm test && cd ../client",
43-
"clean": "node ../node_modules/rimraf/bin.js lib",
43+
"clean": "node ../node_modules/.bin/rimraf lib",
4444
"all": "npm run clean && npm run compile && npm run lint && npm test",
4545
"compile:publish": "node ../build/bin/tsc -b ./tsconfig.publish.json && shx cp src/node/terminateProcess.sh lib/node/terminateProcess.sh",
4646
"all:publish": "git clean -xfd . && npm install && npm run updateVSCodeVersion && npm run compile:publish && npm run lint && cd ../client-node-tests && npm run all:publish && cd ..",

jsonrpc/package-lock.json

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

jsonrpc/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-jsonrpc",
33
"description": "A json rpc implementation over streams",
4-
"version": "8.2.0-next.0",
4+
"version": "8.2.0-next.1",
55
"author": "Microsoft Corporation",
66
"license": "MIT",
77
"repository": {
@@ -30,7 +30,7 @@
3030
"preversion": "npm test",
3131
"compile": "node ../build/bin/tsc -b ./tsconfig.json",
3232
"watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
33-
"clean": "node ../node_modules/rimraf/bin.js lib && node ../node_modules/rimraf/bin.js dist",
33+
"clean": "node ../node_modules/.bin/rimraf lib && node ../node_modules/.bin/rimraf dist",
3434
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
3535
"test": "npm run test:node && npm run test:browser",
3636
"test:node": "node ../node_modules/mocha/bin/_mocha",

jsonrpc/src/common/encoding.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export namespace Encodings {
120120
const index = value.indexOf(';q=');
121121
if (index !== -1) {
122122
const parsed = parseFloat(value.substr(index));
123-
if (parsed !== NaN) {
123+
if (!Number.isNaN(parsed)) {
124124
q = parsed;
125125
}
126126
encoding = value.substr(0, index);

0 commit comments

Comments
 (0)