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
252 B
Bash
Executable File

#!/usr/bin/env bash
touch .build/browser-dev-sync
browser-sync start --proxy localhost:8080 --ws &
watchexec -w Sources -e .swift -r 'swift build --product App && touch .build/browser-dev-sync' &
watchexec -w .build/browser-dev-sync -r 'swift run App'