7 lines
267 B
Bash
Executable File
7 lines
267 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
touch .build/browser-dev-sync
|
|
browser-sync start -p localhost:8080 --ws &
|
|
|
|
watchexec -w Sources -e .swift -r 'swift build --product App && touch .build/browser-dev-sync' &
|
|
watchexec -w .build/browser-dev-sync --ignore-nothing -r '.build/debug/App'
|