We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3212171 commit c9963b0Copy full SHA for c9963b0
scripts/build.sh
@@ -3,8 +3,13 @@ set -e
3
4
echo "🔨 Building AgentGuard..."
5
6
-# Compile TypeScript
7
-npx tsc
+# Compile TypeScript with verbose output
+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"
13
14
# Make executables executable if they exist
15
if [ -d "dist/bin" ]; then
0 commit comments