Fix issue with tracking changes to rest api code in dev mode

This commit is contained in:
Ram Yalamanchili 2020-01-01 22:44:36 -08:00
parent 2feed92a3f
commit ed93611f43
2 changed files with 3 additions and 3 deletions

View file

@ -176,7 +176,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

@ -9,6 +9,6 @@
"index.ts",
"src"
],
"exec": "npm start",
"exec": "npm run build && npm start",
"ext": "ts"
}
}