Add watch script

This commit is contained in:
Jon Staab
2025-04-02 14:01:46 -07:00
parent 7440a07ffc
commit ed834954b9
Executable
+9
View File
@@ -0,0 +1,9 @@
#!/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