Skip to content

Commit 21e7498

Browse files
committed
update @type/node package
This was causing compile errors since we updated the typescript package
1 parent f24e569 commit 21e7498

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@
385385
"@types/bonjour": "^3.5.4",
386386
"@types/compare-versions": "^3.0.0",
387387
"@types/mocha": "^2.2.42",
388-
"@types/node": "^8.10.25",
388+
"@types/node": "^10.0.0",
389389
"@types/ssh2": "~0.5.35",
390390
"@types/ssh2-streams": "~0.1.5",
391391
"@types/temp": "^0.8.3",

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Ev3devDebugAdapterDescriptorFactory implements vscode.DebugAdapterDescript
7373
}
7474

7575
// make VS Code connect to debug server
76-
return new vscode.DebugAdapterServer(this.server.address().port);
76+
return new vscode.DebugAdapterServer((<net.AddressInfo>this.server.address()).port);
7777
}
7878

7979
dispose() {

0 commit comments

Comments
 (0)