create-fleetbo-project 1.2.52 → 1.2.53
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.
|
@@ -187,7 +187,7 @@ if (command === 'alex') {
|
|
|
187
187
|
output: process.stdout,
|
|
188
188
|
prompt: \`\\x1b[34m\${dynamicUsername} ❯ \\x1b[0m\`
|
|
189
189
|
});
|
|
190
|
-
process.stdout.write('
|
|
190
|
+
process.stdout.write('\\n\\x1b[F');
|
|
191
191
|
rl.prompt();
|
|
192
192
|
rl.on('line', async (line) => {
|
|
193
193
|
if (['exit', 'quit'].includes(line.trim().toLowerCase())) {
|
|
@@ -199,7 +199,7 @@ if (command === 'alex') {
|
|
|
199
199
|
await processAlexRequest(line.trim());
|
|
200
200
|
console.log('');
|
|
201
201
|
}
|
|
202
|
-
process.stdout.write('
|
|
202
|
+
process.stdout.write('\\n\\x1b[F');
|
|
203
203
|
rl.prompt();
|
|
204
204
|
}).on('close', () => {
|
|
205
205
|
process.exit(0);
|
|
@@ -423,7 +423,7 @@ async function setupProject() {
|
|
|
423
423
|
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2), 'utf8');
|
|
424
424
|
console.log('\n \x1b[32m [Fleetbo] Project successfully created!\x1b[0m');
|
|
425
425
|
console.log(`\n Run: cd ${projectName} && npm run fleetbo`);
|
|
426
|
-
console.log('\ x1b[32m [Fleetbo] To start architecting with Alex, run: npm run fleetbo alex!\x1b[0m');
|
|
426
|
+
console.log('\ \x1b[32m [Fleetbo] To start architecting with Alex, run: npm run fleetbo alex!\x1b[0m');
|
|
427
427
|
console.log('');
|
|
428
428
|
} catch (error) {
|
|
429
429
|
console.error('\n❌ Setup failed:', error.message);
|