launchbase 1.1.1 → 1.1.2

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/bin/launchbase.js CHANGED
@@ -7,7 +7,7 @@ const crypto = require('crypto');
7
7
  const fs = require('fs-extra');
8
8
  const { execSync, spawn } = require('child_process');
9
9
 
10
- const VERSION = '1.1.1';
10
+ const VERSION = '1.1.2';
11
11
  const program = new Command();
12
12
 
13
13
  function findAvailablePort(startPort = 5432, maxAttempts = 100) {
@@ -361,9 +361,11 @@ program
361
361
  .option('-s, --sdk', 'Include TypeScript SDK')
362
362
  .option('--no-docker', 'Skip Docker/database setup')
363
363
  .option('--no-cicd', 'Skip CI/CD workflow')
364
- .action(async (appName, options) => {
364
+ .action(async (appName, options, command) => {
365
365
  console.log('\nšŸš€ LaunchBase CLI v' + VERSION + '\n');
366
366
  console.log('šŸ“ Creating project:', appName);
367
+ console.log('šŸ” DEBUG options:', JSON.stringify(options));
368
+ console.log('šŸ” DEBUG template flag:', options.template);
367
369
 
368
370
  // Find available ports first
369
371
  console.log('šŸ” Finding available ports...');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "launchbase",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Generate production-ready NestJS backends with authentication, multi-tenancy, billing, and deployment in minutes",
5
5
  "author": "LaunchBase",
6
6
  "keywords": [