utn-cli 2.0.12 → 2.0.13

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/commands/db.js CHANGED
@@ -45,6 +45,6 @@ export async function initDb() {
45
45
 
46
46
  export function showDbVersion() {
47
47
  // Assuming the version for 'db' command comes from the main utn-cli package.json
48
- mostrarVersion(path.join(__dirname, '../../package.json'));
48
+ mostrarVersion(path.join(__dirname, '../package.json'));
49
49
  closeReadLine();
50
50
  }
@@ -53,7 +53,7 @@ export async function updateFrontend() {
53
53
  }
54
54
 
55
55
  copiarDirectorios(directoriodePlantillas, directorioDestino, archivosAExcluir);
56
- mostrarVersion(path.join(__dirname, '../../package.json'));
56
+ mostrarVersion(path.join(__dirname, '../package.json'));
57
57
  console.log('Proyecto de frontend actualizado exitosamente.');
58
58
  closeReadLine();
59
59
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "utn-cli",
3
- "version": "2.0.12",
3
+ "version": "2.0.13",
4
4
  "description": "Herramienta CLI unificada para la gestión de plantillas en SIGU.",
5
5
  "main": "index.js",
6
6
  "type": "module",