utn-cli 2.0.11 → 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, '
|
|
48
|
+
mostrarVersion(path.join(__dirname, '../package.json'));
|
|
49
49
|
closeReadLine();
|
|
50
50
|
}
|
package/commands/frontend.js
CHANGED
|
@@ -53,7 +53,7 @@ export async function updateFrontend() {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
copiarDirectorios(directoriodePlantillas, directorioDestino, archivosAExcluir);
|
|
56
|
-
mostrarVersion(path.join(__dirname, '
|
|
56
|
+
mostrarVersion(path.join(__dirname, '../package.json'));
|
|
57
57
|
console.log('Proyecto de frontend actualizado exitosamente.');
|
|
58
58
|
closeReadLine();
|
|
59
59
|
}
|
|
@@ -214,6 +214,6 @@ export async function cloneFrontendComponent() {
|
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
export function showFrontendVersion() {
|
|
217
|
-
mostrarVersion(path.join(__dirname, '
|
|
217
|
+
mostrarVersion(path.join(__dirname, '../package.json'));
|
|
218
218
|
closeReadLine();
|
|
219
219
|
}
|
package/package.json
CHANGED
|
@@ -7,7 +7,8 @@ import { MatIconModule } from '@angular/material/icon';
|
|
|
7
7
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
8
8
|
import { MatDialog } from '@angular/material/dialog';
|
|
9
9
|
import { ReporteDeIncidenciasComponent } from '../../../Componentes/Nucleo/reporte-de-incidencias/reporte-de-incidencias.component'
|
|
10
|
-
import { MensajesComponent } from '../../../Componentes/Nucleo/mensajes/mensajes.component'
|
|
10
|
+
import { MensajesComponent } from '../../../Componentes/Nucleo/mensajes/mensajes.component';
|
|
11
|
+
import { MensajeConfirmacionHTMLComponent } from '../../../Componentes/Nucleo/mensaje-confirmacion-html/mensaje-confirmacion-html';
|
|
11
12
|
|
|
12
13
|
@Component({
|
|
13
14
|
selector: 'app-contenedor-componentes',
|