don-cheli-sdd 1.16.3 → 1.16.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/CHANGELOG.md +6 -0
- package/README.es.md +1 -1
- package/README.md +1 -1
- package/README.pt.md +1 -1
- package/VERSION +1 -1
- package/package.json +1 -1
- package/scripts/.claude/don-cheli/VERSION +1 -1
- package/scripts/.claude/don-cheli/scripts/instalar.sh +2 -2
- package/scripts/generar-config.sh +1 -1
- package/scripts/instalar.sh +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ Todos los cambios notables en Don Cheli SDD Framework.
|
|
|
4
4
|
|
|
5
5
|
Formato basado en [Conventional Commits](https://www.conventionalcommits.org/).
|
|
6
6
|
|
|
7
|
+
## [1.16.4](https://github.com/doncheli/don-cheli-sdd/compare/v1.16.3...v1.16.4) (2026-04-02)
|
|
8
|
+
|
|
9
|
+
### Correcciones
|
|
10
|
+
|
|
11
|
+
* quitar 'local' fuera de función en instalador Custom ([3f0eae3](https://github.com/doncheli/don-cheli-sdd/commit/3f0eae30efe513a19abd6e94b6171ec9e860a9d9))
|
|
12
|
+
|
|
7
13
|
## [1.16.3](https://github.com/doncheli/don-cheli-sdd/compare/v1.16.2...v1.16.3) (2026-04-02)
|
|
8
14
|
|
|
9
15
|
### Correcciones
|
package/README.es.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</p>
|
|
13
13
|
<p align="center">
|
|
14
14
|
<a href="#-instalación"><img src="https://img.shields.io/badge/instalación-2_minutos-brightgreen" alt="Install"></a>
|
|
15
|
-
<img src="https://img.shields.io/badge/versión-1.16.
|
|
15
|
+
<img src="https://img.shields.io/badge/versión-1.16.4-blue" alt="Version">
|
|
16
16
|
<img src="https://img.shields.io/badge/licencia-Apache%202.0-green" alt="License">
|
|
17
17
|
<img src="https://img.shields.io/badge/idiomas-ES%20|%20EN%20|%20PT-red" alt="Languages">
|
|
18
18
|
<img src="https://img.shields.io/badge/comandos-85+-purple" alt="Commands">
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</p>
|
|
13
13
|
<p align="center">
|
|
14
14
|
<a href="#-installation"><img src="https://img.shields.io/badge/install-2_minutes-brightgreen" alt="Install"></a>
|
|
15
|
-
<img src="https://img.shields.io/badge/version-1.16.
|
|
15
|
+
<img src="https://img.shields.io/badge/version-1.16.4-blue" alt="Version">
|
|
16
16
|
<img src="https://img.shields.io/badge/license-Apache%202.0-green" alt="License">
|
|
17
17
|
<img src="https://img.shields.io/badge/languages-ES%20|%20EN%20|%20PT-red" alt="Languages">
|
|
18
18
|
<img src="https://img.shields.io/badge/commands-85+-purple" alt="Commands">
|
package/README.pt.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</p>
|
|
13
13
|
<p align="center">
|
|
14
14
|
<a href="#-instalação"><img src="https://img.shields.io/badge/instalação-2_minutos-brightgreen" alt="Install"></a>
|
|
15
|
-
<img src="https://img.shields.io/badge/versão-1.16.
|
|
15
|
+
<img src="https://img.shields.io/badge/versão-1.16.4-blue" alt="Version">
|
|
16
16
|
<img src="https://img.shields.io/badge/licença-Apache%202.0-green" alt="License">
|
|
17
17
|
<img src="https://img.shields.io/badge/idiomas-ES%20|%20EN%20|%20PT-red" alt="Languages">
|
|
18
18
|
<img src="https://img.shields.io/badge/comandos-85+-purple" alt="Commands">
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.16.
|
|
1
|
+
1.16.4
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.16.
|
|
1
|
+
1.16.4
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
set -euo pipefail
|
|
6
6
|
|
|
7
|
-
VERSION="1.16.
|
|
7
|
+
VERSION="1.16.4"
|
|
8
8
|
REPO_URL="https://github.com/doncheli/don-cheli-sdd"
|
|
9
9
|
CLEANUP_TMPDIR=""
|
|
10
10
|
|
|
@@ -551,7 +551,7 @@ if [ "$INTERACTIVE_MODE" = true ]; then
|
|
|
551
551
|
echo -e " ${BOLD}Selecciona las skills que necesitas:${NC}"
|
|
552
552
|
echo -e " ${DIM}(números separados por coma, 'a' para todas, enter para ninguna)${NC}"
|
|
553
553
|
echo ""
|
|
554
|
-
|
|
554
|
+
i=1
|
|
555
555
|
for s in "${ALL_SKILLS_ARRAY[@]}"; do
|
|
556
556
|
echo -e " ${CYAN}${i})${NC} ${s}"
|
|
557
557
|
i=$((i + 1))
|
|
@@ -238,7 +238,7 @@ _gen_continue() {
|
|
|
238
238
|
cat > "$dir/.continue/config/don-cheli.json" 2>/dev/null << 'CONTEOF' || true
|
|
239
239
|
{
|
|
240
240
|
"name": "don-cheli-sdd",
|
|
241
|
-
"version": "1.16.
|
|
241
|
+
"version": "1.16.4",
|
|
242
242
|
"description": "Don Cheli SDD Framework",
|
|
243
243
|
"rules": [
|
|
244
244
|
"All production code requires tests (TDD: RED → GREEN → REFACTOR)",
|
package/scripts/instalar.sh
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
set -euo pipefail
|
|
6
6
|
|
|
7
|
-
VERSION="1.16.
|
|
7
|
+
VERSION="1.16.4"
|
|
8
8
|
REPO_URL="https://github.com/doncheli/don-cheli-sdd"
|
|
9
9
|
CLEANUP_TMPDIR=""
|
|
10
10
|
|
|
@@ -551,7 +551,7 @@ if [ "$INTERACTIVE_MODE" = true ]; then
|
|
|
551
551
|
echo -e " ${BOLD}Selecciona las skills que necesitas:${NC}"
|
|
552
552
|
echo -e " ${DIM}(números separados por coma, 'a' para todas, enter para ninguna)${NC}"
|
|
553
553
|
echo ""
|
|
554
|
-
|
|
554
|
+
i=1
|
|
555
555
|
for s in "${ALL_SKILLS_ARRAY[@]}"; do
|
|
556
556
|
echo -e " ${CYAN}${i})${NC} ${s}"
|
|
557
557
|
i=$((i + 1))
|