#!/bin/bash set -e echo "🧹 Cleaning up temporary files..." # Remove node_modules (optional, comment out if you want to keep them) # find . -name "node_modules" -type d -prune -exec rm -rf {} \; # Remove build artifacts find . -name "dist" -type d -prune -exec rm -rf {} \; find . -name ".next" -type d -prune -exec rm -rf {} \; find . -name "build" -type d -prune -exec rm -rf {} \; find . -name "*.tsbuildinfo" -type f -delete # Remove logs find . -name "*.log" -type f -delete # Remove cache find . -name ".turbo" -type d -prune -exec rm -rf {} \; find . -name ".cache" -type d -prune -exec rm -rf {} \; echo "✅ Cleanup completed!"