create-fleetbo-project 1.2.81 → 1.2.82
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.
|
@@ -361,9 +361,10 @@ async function syncFirebase(keyApp, networkUrl, testerEmail) {
|
|
|
361
361
|
try {
|
|
362
362
|
await axios.post(UPDATE_NETWORK_URL, { keyApp, networkUrl, tester: testerEmail });
|
|
363
363
|
console.log(\`\\n\\x1b[32m[Fleetbo]\\x1b[0m -------------------------------------------------------------\`);
|
|
364
|
-
console.log('\\x1b[32m[Fleetbo] GO GO GO ! FLEETBO
|
|
365
|
-
console.log('\\x1b[32m[Fleetbo] You can now start coding and previewing in
|
|
364
|
+
console.log('\\x1b[32m[Fleetbo] GO GO GO ! FLEETBO COCKPIT IS READY \\x1b[0m');
|
|
365
|
+
console.log('\\x1b[32m[Fleetbo] You can now start coding and previewing in Cockpit. 🚀\\x1b[0m');
|
|
366
366
|
console.log(\`\\x1b[32m[Fleetbo]\\x1b[0m -------------------------------------------------------------\`);
|
|
367
|
+
console.log('\\x1b[34m[Pilot Instruction] ❯ \\x1b[0m Switch to your Fleetbo Cockpit tab to begin. \\x1b[0m');
|
|
367
368
|
} catch (err) {
|
|
368
369
|
console.error(\`[Fleetbo] Sync Error: \${err.message}\`);
|
|
369
370
|
}
|
|
@@ -536,7 +537,7 @@ async function setupProject() {
|
|
|
536
537
|
packageJson.scripts = { ...packageJson.scripts, "fleetbo": "node scripts/cli.js", "dev": "node scripts/cli.js" };
|
|
537
538
|
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2), 'utf8');
|
|
538
539
|
console.log('\n \x1b[32m [Fleetbo] Project successfully created!\x1b[0m');
|
|
539
|
-
console.log(`\n Run: cd ${projectName}`);
|
|
540
|
+
console.log(`\n Run: cd ${projectName} && npm run fleetbo`);
|
|
540
541
|
console.log('\n \x1b[32m [Fleetbo] To start architecting with Alex, run: npm run fleetbo alex!\x1b[0m');
|
|
541
542
|
console.log('');
|
|
542
543
|
} catch (error) {
|