@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.
- package/dist/cli.js +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", "
|
|
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
|
|
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
|
});
|