create-fleetbo-project 1.2.53 ā 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.
|
@@ -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]
|
|
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);
|