fixed up build libs script

This commit is contained in:
Boki 2025-06-20 13:22:38 -04:00
parent 76d55fe35f
commit ae2818e068
2 changed files with 3 additions and 14 deletions

View file

@ -61,8 +61,9 @@ for lib in "${libs[@]}"; do
# Clean previous build artifacts
rm -rf dist tsconfig.tsbuildinfo
# Use npx tsc directly instead of bun run build
npx tsc
# Use tsc with build mode to respect project references
# npx tsc -b
bun run build
if [ $? -ne 0 ]; then
echo -e "${RED}Failed to build $lib. Exiting.${NC}"