mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
Fix issue with tracking changes to rest api code in dev mode
This commit is contained in:
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user