📺 finlizes routing and improves bs

This commit is contained in:
2026-05-22 15:56:44 +02:00
parent c3782509e8
commit 8bb12aaac1
25 changed files with 277 additions and 88 deletions
+7 -3
View File
@@ -5,8 +5,12 @@ set -eo pipefail # this can be harmful, see https://www.youtube.com/watch?v=4Jo3
exit 1;
}
# depends on
declare -r app='src/app-cfpodcasts.ts'
declare -r cem='node_modules/.bin/cem'
declare -r app=(
'src/**/c-*.ts'
'src/**/app-*/index.ts'
'src/index.ts'
)
declare -r cem='node_modules/.bin/custom-elements-manifest'
help(){
if ! isHelp "${@}"; then return 0; fi
@@ -17,7 +21,7 @@ help(){
}
main(){
help "${@}"
$cem analyze --litelement --globs "$app" "${@}"
$cem analyze --litelement --globs "${app[@]}" "${@}"
}
main "${@}"