specleap-framework 2.0.6 → 2.0.7
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/package.json +1 -1
- package/setup.sh +21 -20
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -4,26 +4,27 @@
|
|
|
4
4
|
|
|
5
5
|
set -e
|
|
6
6
|
|
|
7
|
-
#
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
7
|
+
# Colores deshabilitados por defecto para máxima compatibilidad
|
|
8
|
+
# Si quieres colores, descomenta el bloque de abajo
|
|
9
|
+
|
|
10
|
+
RED=''
|
|
11
|
+
GREEN=''
|
|
12
|
+
YELLOW=''
|
|
13
|
+
BLUE=''
|
|
14
|
+
CYAN=''
|
|
15
|
+
BOLD=''
|
|
16
|
+
NC=''
|
|
17
|
+
|
|
18
|
+
# OPCIÓN AVANZADA: Descomentar para habilitar colores (puede causar códigos ANSI visibles en algunos terminales)
|
|
19
|
+
# if [[ -t 1 ]] && command -v tput &>/dev/null && [[ $(tput colors 2>/dev/null || echo 0) -ge 8 ]]; then
|
|
20
|
+
# RED='\033[0;31m'
|
|
21
|
+
# GREEN='\033[0;32m'
|
|
22
|
+
# YELLOW='\033[1;33m'
|
|
23
|
+
# BLUE='\033[0;34m'
|
|
24
|
+
# CYAN='\033[0;36m'
|
|
25
|
+
# BOLD='\033[1m'
|
|
26
|
+
# NC='\033[0m'
|
|
27
|
+
# fi
|
|
27
28
|
|
|
28
29
|
# Ancho terminal
|
|
29
30
|
COLS=$(tput cols 2>/dev/null || echo 80)
|