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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/setup.sh +21 -20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specleap-framework",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "Spec-Driven Development Framework — Transform VSCode, Cursor, JetBrains into spec-first development machines",
5
5
  "keywords": [
6
6
  "spec-driven-development",
package/setup.sh CHANGED
@@ -4,26 +4,27 @@
4
4
 
5
5
  set -e
6
6
 
7
- # Detectar si el terminal soporta colores
8
- if [[ -t 1 ]] && command -v tput &>/dev/null && [[ $(tput colors 2>/dev/null || echo 0) -ge 8 ]]; then
9
- # Terminal con colores
10
- RED='\033[0;31m'
11
- GREEN='\033[0;32m'
12
- YELLOW='\033[1;33m'
13
- BLUE='\033[0;34m'
14
- CYAN='\033[0;36m'
15
- BOLD='\033[1m'
16
- NC='\033[0m'
17
- else
18
- # Terminal sin colores - usar texto plano
19
- RED=''
20
- GREEN=''
21
- YELLOW=''
22
- BLUE=''
23
- CYAN=''
24
- BOLD=''
25
- NC=''
26
- fi
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)