Files
welshman/watch.sh
T
2025-04-09 13:47:59 -07:00

10 lines
199 B
Bash
Executable File

#!/bin/bash
for package in $(ls packages); do
npx onchange packages/$package -e '**/dist/**' -e '**/*.tsbuildinfo' -k -- pnpm run --filter $package build &
done
echo "Watching for changes"
wait