@launchframe/cli 1.0.0-beta.12 → 1.0.0-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@launchframe/cli",
3
- "version": "1.0.0-beta.12",
3
+ "version": "1.0.0-beta.13",
4
4
  "description": "Production-ready B2B SaaS boilerplate with subscriptions, credits, and multi-tenancy",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -105,7 +105,7 @@ async function deployUp() {
105
105
  const verifySpinner = ora('Checking service status...').start();
106
106
 
107
107
  try {
108
- const { stdout: psOutput} = await execAsync(
108
+ const { stdout: psOutput } = await execAsync(
109
109
  `ssh ${vpsUser}@${vpsHost} "cd ${vpsAppFolder}/infrastructure && docker-compose -f docker-compose.yml ps"`,
110
110
  { timeout: 30000 }
111
111
  );
@@ -114,6 +114,7 @@ async function deployUp() {
114
114
 
115
115
  console.log(chalk.gray('\n' + psOutput));
116
116
  } catch (error) {
117
+ console.error(chalk.red(`\n❌ Error: ${error.message}\n`));
117
118
  verifySpinner.warn('Could not verify services');
118
119
  }
119
120
 
@@ -205,6 +205,7 @@ async function waitlistDeploy() {
205
205
  verifySpinner.succeed('Services verified');
206
206
  console.log(chalk.gray('\n' + psOutput));
207
207
  } catch (error) {
208
+ console.error(chalk.yellow(`\n⚠️ Error: ${error.message}\n`));
208
209
  verifySpinner.warn('Could not verify services');
209
210
  }
210
211