10 lines
177 B
Bash
Executable File
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
|