@icarusmx/creta 1.3.2 → 1.3.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 +0 -3
- package/lib/pr-tutorial.js +6 -0
- package/package.json +1 -1
package/bin/creta.js
CHANGED
|
@@ -1268,9 +1268,6 @@ async function startProyectosSelectorInteractive() {
|
|
|
1268
1268
|
const reset = '\x1b[0m'
|
|
1269
1269
|
|
|
1270
1270
|
console.log(`${highlight}${prefix}${project.title}${reset}`)
|
|
1271
|
-
if (isSelected) {
|
|
1272
|
-
console.log(`${highlight} ${project.description}${reset}`)
|
|
1273
|
-
}
|
|
1274
1271
|
console.log("")
|
|
1275
1272
|
})
|
|
1276
1273
|
}
|
package/lib/pr-tutorial.js
CHANGED
|
@@ -97,6 +97,9 @@ export class PullRequestTutorial {
|
|
|
97
97
|
console.log("")
|
|
98
98
|
console.log("Después de instalar, ejecuta: gh auth login")
|
|
99
99
|
console.log("")
|
|
100
|
+
console.log("📺 Video tutorial (5 min):")
|
|
101
|
+
console.log(" https://www.youtube.com/watch?v=2tymYRBNMXI")
|
|
102
|
+
console.log("")
|
|
100
103
|
await this.waitForEnter("Presiona Enter para salir...")
|
|
101
104
|
process.exit(1)
|
|
102
105
|
}
|
|
@@ -114,6 +117,9 @@ export class PullRequestTutorial {
|
|
|
114
117
|
console.log("Por favor ejecuta: gh auth login")
|
|
115
118
|
console.log("Y sigue las instrucciones para autenticarte.")
|
|
116
119
|
console.log("")
|
|
120
|
+
console.log("📺 Si necesitas ayuda, ve este tutorial (5 min):")
|
|
121
|
+
console.log(" https://www.youtube.com/watch?v=2tymYRBNMXI")
|
|
122
|
+
console.log("")
|
|
117
123
|
await this.waitForEnter("Presiona Enter para salir...")
|
|
118
124
|
process.exit(1)
|
|
119
125
|
}
|