Skip to main content
Glama

Context Pods

by conorluddy
clean-test-artifacts.shโ€ข1.04 kB
#!/bin/bash # Clean up generated files from test directories # This prevents accidental commits of compiled test files echo "๐Ÿงน Cleaning generated files from test directories..." # Find and remove generated files FOUND_FILES=$(find . -path "*/node_modules" -prune -o \ \( -path "*/tests/*.js" -o \ -path "*/tests/*.d.ts" -o \ -path "*/tests/*.js.map" -o \ -path "*/tests/*.d.ts.map" -o \ -path "*/test/*.js" -o \ -path "*/test/*.d.ts" -o \ -path "*/test/*.js.map" -o \ -path "*/test/*.d.ts.map" \) \ -type f -print | grep -v node_modules || true) if [ -z "$FOUND_FILES" ]; then echo "โœ… No generated test files found." else echo "Found generated files to clean:" echo "$FOUND_FILES" echo "" # Remove the files echo "$FOUND_FILES" | while read -r file; do rm -f "$file" echo " โœ“ Removed: $file" done echo "" echo "โœ… Cleaned all generated test files." fi echo "" echo "๐Ÿ’ก Tip: Ensure test directories have proper .gitignore files to prevent this in the future."

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/conorluddy/ContextPods'

If you have feedback or need assistance with the MCP directory API, please join our Discord server