PeerTube/scripts/dev/peertube-runner.sh

14 lines
243 B
Bash
Raw Normal View History

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