diff options
Diffstat (limited to 'scripts/dev/peertube-cli.sh')
-rwxr-xr-x | scripts/dev/peertube-cli.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/dev/peertube-cli.sh b/scripts/dev/peertube-cli.sh new file mode 100755 index 000000000..172bf038e --- /dev/null +++ b/scripts/dev/peertube-cli.sh | |||
@@ -0,0 +1,11 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | set -eu | ||
4 | |||
5 | rm -rf ./apps/peertube-cli/dist | ||
6 | |||
7 | cd ./apps/peertube-cli | ||
8 | |||
9 | ../../node_modules/.bin/concurrently -k \ | ||
10 | "../../node_modules/.bin/tsc -w --noEmit" \ | ||
11 | "node ./scripts/watch.js" | ||