PeerTube/scripts/dev/peertube-runner.sh
2024-03-18 16:09:22 +01:00

14 lines
243 B
Bash
Executable file

#!/bin/bash
set -eu
rm -rf ./apps/peertube-runner/dist
cd ./apps/peertube-runner
../../node_modules/.bin/tsc -b --verbose
../../node_modules/.bin/concurrently -k \
"../../node_modules/.bin/tsc -w --noEmit" \
"node ./scripts/watch.js"