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 +4 -2
- package/package.json +1 -1
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.
|
|
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