vako 1.3.8 β†’ 1.3.9

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.
@@ -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
- await this.installDependencies();
78
- spinner8.success({ text: `πŸ“₯ Dependencies installed successfully` });
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/vako.js CHANGED
@@ -21,7 +21,7 @@ const program = new Command();
21
21
  program
22
22
  .name('vako')
23
23
  .description('Vako Framework CLI')
24
- .version('1.3.8');
24
+ .version('1.3.9');
25
25
 
26
26
  // ============= DEV COMMAND =============
27
27
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vako",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "description": "πŸš€ Ultra-modern Node.js framework with hot reload, plugins, authentication, TypeScript support, and Next.js integration",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",