navori 0.2.11 → 0.2.12
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/README.md +4 -1
- package/dist/index.js +1568 -1530
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,6 +19,9 @@ npx navori init
|
|
|
19
19
|
cd ~/tu-repo
|
|
20
20
|
navori init --recommended
|
|
21
21
|
|
|
22
|
+
# Instalación máxima: todos los plugins + pre-commit hook + scan-monorepo + project block estricto
|
|
23
|
+
navori init --full
|
|
24
|
+
|
|
22
25
|
# O wizard interactivo con detección de stack
|
|
23
26
|
navori init
|
|
24
27
|
```
|
|
@@ -40,7 +43,7 @@ Y genera:
|
|
|
40
43
|
|
|
41
44
|
| Comando | Qué hace |
|
|
42
45
|
|---|---|
|
|
43
|
-
| `init` | Bootstrap del repo con detección automática + wizard (o `--recommended` sin preguntas) |
|
|
46
|
+
| `init` | Bootstrap del repo con detección automática + wizard (o `--recommended` sin preguntas, o `--full` para la instalación máxima) |
|
|
44
47
|
| `add <plugin>` | Activa un plugin y opcionalmente instala la tool externa |
|
|
45
48
|
| `configure <section>` | Ajusta una sección del config sin re-correr el wizard |
|
|
46
49
|
| `update` | Re-detecta el repo, refresca config y corre sync en un paso |
|