Skip to content

Commit c9963b0

Browse files
committed
ci(build): add verbose TypeScript compilation logging and bin file checks
1 parent 3212171 commit c9963b0

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

scripts/build.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,13 @@ set -e
33

44
echo "🔨 Building AgentGuard..."
55

6-
# Compile TypeScript
7-
npx tsc
6+
# Compile TypeScript with verbose output
7+
echo "📝 Running TypeScript compilation..."
8+
npx tsc --listFiles | grep -E "(bin/|error|Error)" || true
9+
10+
# Check if bin files were created
11+
echo "📁 Checking bin files after tsc..."
12+
ls -la dist/bin/ 2>/dev/null || echo "dist/bin not found"
813

914
# Make executables executable if they exist
1015
if [ -d "dist/bin" ]; then

0 commit comments

Comments
 (0)