Files
SolTube/scripts/dev/peertube-runner.sh
ShreejitPanchal 6601501eff Init commit
2026-05-19 19:56:02 +08:00

14 lines
243 B
Bash

#!/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"