create-react-zr-architecture 1.0.0 → 1.0.1
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/cli.js +6 -6
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -183,16 +183,16 @@ async function main() {
|
|
|
183
183
|
console.log(' ✅ Tailwind CSS + shadcn/ui');
|
|
184
184
|
console.log(' ✅ Axios + Socket.io\n');
|
|
185
185
|
|
|
186
|
-
console.log(chalk.cyan('🎯 Próximos pasos:\n'));
|
|
186
|
+
console.log(chalk.cyan('\n🎯 Próximos pasos:\n'));
|
|
187
187
|
console.log(chalk.white(` cd ${projectName}`));
|
|
188
188
|
const devCommand = pkgManager === 'npm' ? 'npm run dev' : `${pkgManager} dev`;
|
|
189
|
-
console.log(chalk.white(` ${devCommand}
|
|
190
|
-
console.log(chalk.yellow('💡 Agregar componentes shadcn:\n'));
|
|
189
|
+
console.log(chalk.white(` ${devCommand}`));
|
|
190
|
+
console.log(chalk.yellow('\n💡 Agregar componentes shadcn:\n'));
|
|
191
191
|
console.log(chalk.white(` npx shadcn-ui@latest add button`));
|
|
192
|
-
console.log(chalk.white(` npx shadcn-ui@latest add card form table
|
|
192
|
+
console.log(chalk.white(` npx shadcn-ui@latest add card form table`));
|
|
193
193
|
|
|
194
|
-
console.log(chalk.gray('Documentación completa en README.md'));
|
|
195
|
-
console.log(chalk.
|
|
194
|
+
console.log(chalk.gray('\n📚 Documentación completa en README.md'));
|
|
195
|
+
console.log(chalk.magenta('\n✨ Desarrolla con Aura...\n'));
|
|
196
196
|
}
|
|
197
197
|
|
|
198
198
|
main().catch(console.error);
|