aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/dev/peertube-runner.sh
blob: 7bd756123b15c4215c56745a7b85ff1969ff7088 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -eu

rm -rf ./apps/peertube-runner/dist

cd ./apps/peertube-runner

../../node_modules/.bin/concurrently -k \
  "../../node_modules/.bin/tsc -w --noEmit" \
  "node ./scripts/watch.js"