scripts(analysis): 🔨 Update stricter TypeScript package validation rules in verify-ts-packages.sh

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-26 22:48:42 -08:00
parent a79e09e342
commit 3f02518b79

View file

@ -470,7 +470,7 @@ run_runtime_checks() {
if [[ -n "$has_test_script" ]]; then
progress "[$idx/$total] Testing $pkg_name..."
local test_output
if test_output=$(cd "$pkg_dir" && timeout "${BUILD_TIMEOUT}s" bun run test 2>&1); then
if test_output=$(cd "$pkg_dir" && CI=true timeout "${BUILD_TIMEOUT}s" bun run test 2>&1); then
((test_pass++))
else
local exit_code=$?