1
0
Fork 0
peertube/scripts/dev/peertube-runner.sh

14 lines
243 B
Bash
Raw Normal View History

2023-04-21 13:05:27 +00:00
#!/bin/bash
set -eu
rm -rf ./apps/peertube-runner/dist
2023-04-21 13:05:27 +00:00
cd ./apps/peertube-runner
2023-04-21 13:05:27 +00:00
2024-03-18 15:09:22 +00:00
../../node_modules/.bin/tsc -b --verbose
2023-04-21 13:05:27 +00:00
../../node_modules/.bin/concurrently -k \
"../../node_modules/.bin/tsc -w --noEmit" \
"node ./scripts/watch.js"