Skip to content

Commit

Permalink
Update dependencies (#1271)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer committed Jul 17, 2023
1 parent a1c888b commit f2ff7d5
Show file tree
Hide file tree
Showing 18 changed files with 1,941 additions and 1,220 deletions.
320 changes: 205 additions & 115 deletions client-node-tests/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client-node-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"main": "./extension.js",
"contributes": {},
"scripts": {
"clean": "node ../node_modules/rimraf/bin.js lib",
"clean": "node ../node_modules/.bin/rimraf lib",
"compile": "node ../build/bin/tsc -b ./tsconfig.json",
"watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
Expand All @@ -30,7 +30,7 @@
},
"dependencies": {
"minimatch": "^3.0.4",
"vscode-languageserver": "8.2.0-next.0",
"vscode-languageserver": "8.2.0-next.2",
"vscode-uri": "3.0.3"
},
"devDependencies": {
Expand Down
50 changes: 25 additions & 25 deletions client/package-lock.json

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

6 changes: 3 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-languageclient",
"description": "VSCode Language client implementation",
"version": "8.2.0-next.0",
"version": "8.2.0-next.2",
"author": "Microsoft Corporation",
"license": "MIT",
"engines": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"dependencies": {
"minimatch": "^5.1.0",
"semver": "^7.3.7",
"vscode-languageserver-protocol": "3.17.4-next.0"
"vscode-languageserver-protocol": "3.17.4-next.2"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
Expand All @@ -40,7 +40,7 @@
"watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
"test": "cd ../client-node-tests && npm test && cd ../client",
"clean": "node ../node_modules/rimraf/bin.js lib",
"clean": "node ../node_modules/.bin/rimraf lib",
"all": "npm run clean && npm run compile && npm run lint && npm test",
"compile:publish": "node ../build/bin/tsc -b ./tsconfig.publish.json && shx cp src/node/terminateProcess.sh lib/node/terminateProcess.sh",
"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 ..",
Expand Down
4 changes: 2 additions & 2 deletions jsonrpc/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 jsonrpc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-jsonrpc",
"description": "A json rpc implementation over streams",
"version": "8.2.0-next.0",
"version": "8.2.0-next.1",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"preversion": "npm test",
"compile": "node ../build/bin/tsc -b ./tsconfig.json",
"watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
"clean": "node ../node_modules/rimraf/bin.js lib && node ../node_modules/rimraf/bin.js dist",
"clean": "node ../node_modules/.bin/rimraf lib && node ../node_modules/.bin/rimraf dist",
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
"test": "npm run test:node && npm run test:browser",
"test:node": "node ../node_modules/mocha/bin/_mocha",
Expand Down
2 changes: 1 addition & 1 deletion jsonrpc/src/common/encoding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export namespace Encodings {
const index = value.indexOf(';q=');
if (index !== -1) {
const parsed = parseFloat(value.substr(index));
if (parsed !== NaN) {
if (!Number.isNaN(parsed)) {
q = parsed;
}
encoding = value.substr(0, index);
Expand Down
Loading

0 comments on commit f2ff7d5

Please sign in to comment.