vtasks-automate-cli 0.9.2 → 0.9.5
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/README.md +3 -1
- package/content/index.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,12 +27,14 @@ La herramienta hará lo siguiente:
|
|
|
27
27
|
|
|
28
28
|
## 📦 Instalación
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
Solo ejecutá:
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
33
|
npx vtasks-automate-cli
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
Te pedira una confirmación para instalar los paquetes necesarios. Basta con aceptar.
|
|
37
|
+
|
|
36
38
|
Este comando detectará automáticamente tus carpetas de frontend y backend, instalará lo necesario, y actualizará los scripts.
|
|
37
39
|
|
|
38
40
|
---
|
package/content/index.js
CHANGED
|
@@ -69,7 +69,8 @@ class GitService {
|
|
|
69
69
|
return;
|
|
70
70
|
}
|
|
71
71
|
const split = item.split(" ");
|
|
72
|
-
|
|
72
|
+
//Support http and ssh
|
|
73
|
+
const url = split.find((t) => t.includes("http" || "git@github"));
|
|
73
74
|
|
|
74
75
|
const urlSplit = url.split("/");
|
|
75
76
|
const gitfile = urlSplit[urlSplit.length - 1];
|