aboutsummaryrefslogtreecommitdiff
path: root/bin/watch.sh
blob: f93ce18924e4e14484cb577f77f0065b006beff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash
set -euo pipefail

# Run server

python -m http.server --directory public 8000 &
trap "fuser -k 8000/tcp" EXIT

# Watch TypeScript

CHECK="echo Checking TypeScript… && tsc --checkJs"
BUILD="esbuild --bundle src/main.ts --target=es2016 --outdir=public"
watchexec \
  --clear \
  --watch src \
  -- "$CHECK && $BUILD"