diff --git a/package.json b/package.json index b3bd248..034a38c 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mondaycom/apps-cli", - "version": "4.9.2", + "version": "4.9.3", "description": "A cli tool to manage apps (and monday-code projects) in monday.com", "author": "monday.com Apps Team", "type": "module", diff --git a/src/commands/app/scaffold.ts b/src/commands/app/scaffold.ts index b3cf054..ea58538 100644 --- a/src/commands/app/scaffold.ts +++ b/src/commands/app/scaffold.ts @@ -136,13 +136,16 @@ export default class AppScaffold extends BaseCommand { ]); await tasks.run(ctx); + logger.success( `Project is running at: ${ctx.projectPath}\n` + - `Running command: npm run ${ctx.startCommand}\n` + - `To stop: Press Ctrl+C\n` + `To run manually later:\n` + ` cd ${ctx.project.name}\n` + - ` npm run ${ctx.startCommand}`, + ` npm run ${ctx.startCommand}\n\n` + + `Press Enter to provide your access token and view the tunnel URL\n`, ); + + // Keep scaffold process alive so dev server continues running + await new Promise(() => {}); } }