🔨 Añade soporte a changelog de pagetop-statics (#2)

Reviewed-on: #2
Co-authored-by: Manuel Cillero <manuel@cillero.es>
Co-committed-by: Manuel Cillero <manuel@cillero.es>
This commit is contained in:
Manuel Cillero 2025-08-09 10:17:14 +02:00 committed by Manuel Cillero
parent 47ea9d9f7d
commit c6075fd312
2 changed files with 8 additions and 3 deletions

View file

@ -35,6 +35,10 @@ cd "$(dirname "$0")/.." || exit 1
# Determina ruta del archivo y ámbito de los archivos afectados para el crate
# ------------------------------------------------------------------------------
case "$CRATE" in
pagetop-statics)
CHANGELOG_FILE="helpers/pagetop-statics/CHANGELOG.md"
PATH_FLAGS=(--include-path "helpers/pagetop-statics/**/*")
;;
pagetop-build)
CHANGELOG_FILE="helpers/pagetop-build/CHANGELOG.md"
PATH_FLAGS=(--include-path "helpers/pagetop-build/**/*")
@ -46,6 +50,7 @@ case "$CRATE" in
pagetop)
CHANGELOG_FILE="CHANGELOG.md"
PATH_FLAGS=(
--exclude-path "helpers/pagetop-statics/**/*"
--exclude-path "helpers/pagetop-build/**/*"
--exclude-path "helpers/pagetop-macros/**/*"
)