specleap-framework 2.0.5 → 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 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specleap-framework",
3
- "version": "2.0.5",
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,14 +4,27 @@
4
4
 
5
5
  set -e
6
6
 
7
- # Colores
8
- RED='\033[0;31m'
9
- GREEN='\033[0;32m'
10
- YELLOW='\033[1;33m'
11
- BLUE='\033[0;34m'
12
- CYAN='\033[0;36m'
13
- BOLD='\033[1m'
14
- NC='\033[0m'
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
15
28
 
16
29
  # Ancho terminal
17
30
  COLS=$(tput cols 2>/dev/null || echo 80)