@icarusmx/creta 1.0.3 โ 1.0.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.
- package/bin/creta.js +7 -7
- package/package.json +1 -1
package/bin/creta.js
CHANGED
|
@@ -610,11 +610,11 @@ async function startMainMenuInteractive() {
|
|
|
610
610
|
throw new Error('setRawMode not available')
|
|
611
611
|
}
|
|
612
612
|
|
|
613
|
-
console.log("Te ofrecemos las siguientes opciones")
|
|
613
|
+
console.log("Te ofrecemos las siguientes opciones:")
|
|
614
614
|
|
|
615
615
|
const options = [
|
|
616
|
-
{ id: 1, title: "
|
|
617
|
-
{ id: 2, title: "
|
|
616
|
+
{ id: 1, title: "Aprender conceptos", description: "Explora los enunciados fundamentales" },
|
|
617
|
+
{ id: 2, title: "Construir proyectos", description: "Crea tu portafolio personal" }
|
|
618
618
|
]
|
|
619
619
|
|
|
620
620
|
let selectedIndex = 0
|
|
@@ -643,7 +643,7 @@ async function startMainMenuInteractive() {
|
|
|
643
643
|
Bienvenido a la escuela de software de icarus.mx
|
|
644
644
|
Salgamos de este laberinto ๐๏ธ
|
|
645
645
|
`)
|
|
646
|
-
console.log("Te ofrecemos las siguientes opciones")
|
|
646
|
+
console.log("Te ofrecemos las siguientes opciones:")
|
|
647
647
|
|
|
648
648
|
options.forEach((option, index) => {
|
|
649
649
|
const isSelected = index === selectedIndex
|
|
@@ -716,10 +716,10 @@ async function startMainMenuFallback() {
|
|
|
716
716
|
}
|
|
717
717
|
|
|
718
718
|
try {
|
|
719
|
-
console.log("Te ofrecemos las siguientes opciones")
|
|
719
|
+
console.log("Te ofrecemos las siguientes opciones:")
|
|
720
720
|
console.log("")
|
|
721
|
-
console.log("1.
|
|
722
|
-
console.log("2.
|
|
721
|
+
console.log("1. Aprender conceptos - Explora los enunciados fundamentales")
|
|
722
|
+
console.log("2. Construir proyectos - Crea tu portafolio personal")
|
|
723
723
|
console.log("")
|
|
724
724
|
|
|
725
725
|
const respuesta = await askQuestion("Elige una opciรณn (1-2) o 'q' para salir: ")
|