mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
Fix issue with tracking changes to rest api code in dev mode
This commit is contained in:
parent
2feed92a3f
commit
ed93611f43
|
@ -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 = '';
|
||||
|
|
|
@ -9,6 +9,6 @@
|
|||
"index.ts",
|
||||
"src"
|
||||
],
|
||||
"exec": "npm start",
|
||||
"exec": "npm run build && npm start",
|
||||
"ext": "ts"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue