Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mondaycom/apps-cli",
"version": "4.9.2",
"version": "4.9.3-beta.2",
Comment thread
idanluf marked this conversation as resolved.
Outdated
"description": "A cli tool to manage apps (and monday-code projects) in monday.com",
"author": "monday.com Apps Team",
"type": "module",
Expand Down
9 changes: 6 additions & 3 deletions src/commands/app/scaffold.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 enter access token and view the tunnel URL\n\n`,
Comment thread
idanluf marked this conversation as resolved.
Outdated
);

// Keep scaffold process alive so dev server continues running
await new Promise(() => {});
}
}
Loading