@lastbrain/app 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -15,7 +15,7 @@ program
15
15
  .command("init [directory]")
16
16
  .description("Initialise une nouvelle application Next.js LastBrain")
17
17
  .option("-f, --force", "Écrase les fichiers existants")
18
- .option("--heroui", "Utiliser HeroUI comme bibliothèque de composants")
18
+ .option("--no-heroui", "Ne pas utiliser HeroUI (Tailwind CSS uniquement)")
19
19
  .option("--with-auth", "Inclure le module d'authentification")
20
20
  .option("--no-interactive", "Mode non-interactif (skip la sélection des modules)")
21
21
  .action(async (directory, options) => {
@@ -27,7 +27,7 @@ program
27
27
  force: options.force || false,
28
28
  targetDir,
29
29
  projectName: directory || path.basename(process.cwd()),
30
- useHeroUI: options.heroui || false,
30
+ useHeroUI: options.heroui !== false, // Par défaut true, false si --no-heroui
31
31
  withAuth: options.withAuth || false,
32
32
  interactive: options.interactive !== false,
33
33
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lastbrain/app",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Framework modulaire Next.js avec CLI et système de modules",
5
5
  "private": false,
6
6
  "type": "module",