create-fleetbo-project 1.0.38 → 1.0.39

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.
@@ -71,8 +71,8 @@ async function setupProject() {
71
71
  try {
72
72
  // Étape 1 : Télécharger la structure de base du projet
73
73
  console.log(' [1/5] 📥 Initialisation de la structure du projet...');
74
- // On retire "stdio: 'inherit'" pour masquer les logs de git
75
- execSync(`git clone --depth 1 --branch ${branchName} ${repoGitUrl} "${projectName}"`);
74
+ // On redirige la sortie d'erreur (stderr) vers null pour masquer les messages de progression de Git
75
+ execSync(`git clone --depth 1 --branch ${branchName} ${repoGitUrl} "${projectName}" 2> /dev/null`);
76
76
 
77
77
  // Étape 2 : Se déplacer dans le dossier du projet et nettoyer
78
78
  console.log(' [2/5] ✅ Structure du projet initialisée. Configuration en cours...');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fleetbo-project",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "description": "Creates a new Fleetbo project.",
5
5
  "main": "install-react-template.js",
6
6
  "bin": {