@patto/cli 0.1.3 → 0.1.4

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/README.md +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -202,7 +202,7 @@ patto scan --root /path/to/bot
202
202
 
203
203
  ### lint
204
204
 
205
- Ejecuta las reglas estáticas de Patto sobre comandos, definiciones, plugins y convenciones del proyecto.
205
+ Ejecuta las reglas estáticas de Patto sobre comandos, definiciones, plugins y convenciones del proyecto. Si `features.i18n` está activo, también valida keys usadas con `this.t(...)`, keys dinámicas y paridad de archivos en `src/i18n/locale`.
206
206
 
207
207
  ```bash
208
208
  patto lint --root /path/to/bot
@@ -211,7 +211,7 @@ patto lint --root /path/to/bot
211
211
  ### doctor
212
212
 
213
213
  Verifica la salud del proyecto: runtime, dependencias, scripts, archivos env, tsconfig,
214
- configuración de Patto, sharding/Redis y salida de compilación.
214
+ configuración de Patto, features como i18n, sharding/Redis y salida de compilación.
215
215
 
216
216
  ```bash
217
217
  patto doctor --root /path/to/bot
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patto/cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Official CLI for Patto Bot Template",
5
5
  "type": "module",
6
6
  "license": "AGPL-3.0-only",
@@ -23,9 +23,9 @@
23
23
  "prompts": "^2.4.2"
24
24
  },
25
25
  "optionalDependencies": {
26
- "@patto/cli-core-linux-arm64": "0.1.1",
27
- "@patto/cli-core-linux-x64": "0.1.1",
28
- "@patto/cli-core-win32-x64": "0.1.1"
26
+ "@patto/cli-core-linux-arm64": "0.1.2",
27
+ "@patto/cli-core-linux-x64": "0.1.2",
28
+ "@patto/cli-core-win32-x64": "0.1.2"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/adm-zip": "^0.5.7",