Updated @types/node to v14, fixed TS breaking with changes

This commit is contained in:
Rupenieks
2020-08-12 12:19:41 +02:00
parent 3ef6f031ec
commit a69098a096
10 changed files with 12 additions and 9 deletions

View File

@@ -181,7 +181,7 @@ export class Start extends Command {
Start.openBrowser();
}
this.log(`\nPress "o" to open in Browser.`);
process.stdin.on("data", (key) => {
process.stdin.on("data", (key : string) => {
if (key === 'o') {
Start.openBrowser();
inputText = '';

View File

@@ -62,7 +62,7 @@
"@types/jest": "^24.0.18",
"@types/localtunnel": "^1.9.0",
"@types/lodash.get": "^4.4.6",
"@types/node": "^10.10.1",
"@types/node": "^14.0.26",
"@types/open": "^6.1.0",
"@types/parseurl": "^1.3.1",
"@types/request-promise-native": "^1.0.15",