Files
welshman/watch.sh
T
2025-04-02 14:01:46 -07:00

10 lines
177 B
Bash
Executable File

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