create-fleetbo-project 1.2.52 → 1.2.54

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('\n\x1b[F');
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('\n\x1b[F');
202
+ process.stdout.write('\\n\\x1b[F');
203
203
  rl.prompt();
204
204
  }).on('close', () => {
205
205
  process.exit(0);
@@ -405,7 +405,7 @@ async function setupProject() {
405
405
  WDS_SOCKET_PORT=0`;
406
406
 
407
407
  fs.writeFileSync(path.join(projectDir, '.env'), envContent, 'utf8');
408
- console.log(' [5/7] šŸ›”ļø Securing environment (adding .gitignore)...');
408
+ console.log(' [5/7] šŸ›”ļø Securing environment (adding .gitignore)...');
409
409
  const gitignoreContent = `# Fleetbo Security\n.env\n.env.local\nnode_modules/\ndist/\nbuild/\n.DS_Store\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\n`;
410
410
  fs.writeFileSync(path.join(projectDir, '.gitignore'), gitignoreContent, 'utf8');
411
411
  const scriptsDir = path.join(projectDir, 'scripts');
@@ -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('\n \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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fleetbo-project",
3
- "version": "1.2.52",
3
+ "version": "1.2.54",
4
4
  "description": "Creates a new Fleetbo project.",
5
5
  "main": "install-react-template.js",
6
6
  "bin": {