aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/dev/cli.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/dev/cli.sh')
-rwxr-xr-xscripts/dev/cli.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/dev/cli.sh b/scripts/dev/cli.sh
deleted file mode 100755
index 39ecaad94..000000000
--- a/scripts/dev/cli.sh
+++ /dev/null
@@ -1,16 +0,0 @@
1#!/bin/bash
2
3set -eu
4
5rm -rf ./dist/server/tools/
6
7(
8 cd ./server/tools
9 yarn install --pure-lockfile
10)
11
12mkdir -p "./dist/server/tools"
13cp -r "./server/tools/node_modules" "./dist/server/tools"
14
15cd ./server/tools
16../../node_modules/.bin/tsc-watch --build --verbose --onSuccess 'sh -c "cd ../../ && npm run resolve-tspaths:server"'