Update release notes and deploy workspace
CI - Build & Verify / Build, Typecheck & Hygiene (push) Successful in 59s
CI - Build & Verify / Deploy to award.noveria.net (push) Failing after 53s

This commit is contained in:
AzuTear
2026-06-29 17:49:54 +02:00
parent c466348d18
commit 441ef2b850
196 changed files with 9279 additions and 39292 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -euo pipefail
MAX_LINES="${MAX_LINES:-500}"
find Backend frontend/src \
-type f \( -name '*.cs' -o -name '*.ts' -o -name '*.vue' \) \
-not -path '*/bin/*' \
-not -path '*/obj/*' \
-not -path 'Backend/Migrations/*' \
-print0 \
| xargs -0 wc -l \
| awk -v max="$MAX_LINES" '
$2 != "total" && $1 > max { printf "%6d %s\n", $1, $2; found = 1 }
END { exit found ? 1 : 0 }
'