This repository has been archived on 2026-02-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
swift-duct-calc/swift-dev

6 lines
275 B
Bash
Executable File

#!/usr/bin/env bash
touch .build/browser-dev-sync
browser-sync start -p 0.0.0.0:8080 --ws --no-open &
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'