vako 1.3.8 → 1.3.10
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/commands/setup-executor.js +7 -2
- package/bin/commands/setup.js +1 -1
- package/bin/vako.js +1 -1
- package/package.json +1 -1
|
@@ -74,8 +74,13 @@ class SetupExecutor {
|
|
|
74
74
|
if (this.config.install) {
|
|
75
75
|
currentStep++;
|
|
76
76
|
const spinner8 = createSpinner(`[${currentStep}/${totalSteps}] 📥 Installing dependencies...`).start();
|
|
77
|
-
|
|
78
|
-
|
|
77
|
+
try {
|
|
78
|
+
await this.installDependencies();
|
|
79
|
+
spinner8.success({ text: `📥 Dependencies installed successfully` });
|
|
80
|
+
} catch (error) {
|
|
81
|
+
// Ne pas faire planter le setup si l'installation échoue
|
|
82
|
+
spinner8.warning({ text: `📥 Dependencies installation skipped (run 'npm install' manually)` });
|
|
83
|
+
}
|
|
79
84
|
}
|
|
80
85
|
|
|
81
86
|
} catch (error) {
|
package/bin/commands/setup.js
CHANGED
|
@@ -587,7 +587,7 @@ ${plugins.map(p => ` ⚡ ${p}`).join('\n') || ' No plugins selected'}
|
|
|
587
587
|
});
|
|
588
588
|
|
|
589
589
|
console.log(completionBox);
|
|
590
|
-
console.log(
|
|
590
|
+
console.log(gradient.rainbow('\n✨ Happy coding with Vako! ✨\n'));
|
|
591
591
|
}
|
|
592
592
|
|
|
593
593
|
/**
|
package/bin/vako.js
CHANGED
package/package.json
CHANGED