1
0
Fork 0
peertube/scripts/dev/server.sh

25 lines
719 B
Bash
Raw Normal View History

2020-02-19 07:56:24 +00:00
#!/bin/bash
2018-03-27 08:35:12 +00:00
set -eu
2017-06-11 09:29:03 +00:00
2019-11-29 12:36:40 +00:00
if [ ! -f "./client/dist/en-US/index.html" ]; then
2020-02-19 08:14:28 +00:00
if [ -z ${1+x} ] || [ "$1" != "--skip-client" ]; then
echo "client/dist/en-US/index.html does not exist, compile client files..."
2022-01-03 15:37:16 +00:00
npm run build:client
2020-02-19 08:14:28 +00:00
fi
2017-06-11 09:29:03 +00:00
fi
2019-12-17 14:33:58 +00:00
# Copy locales
mkdir -p "./client/dist"
rm -rf "./client/dist/locale"
cp -r "./client/src/locale" "./client/dist/locale"
2023-10-04 13:13:25 +00:00
mkdir -p "./dist/core/lib"
2019-12-17 14:33:58 +00:00
npm run tsc -- -b -v --incremental server/tsconfig.json
npm run resolve-tspaths:server
2023-10-04 13:13:25 +00:00
cp -r ./server/core/static ./server/core/assets ./dist/core
2019-12-17 14:33:58 +00:00
./node_modules/.bin/tsc-watch --build --preserveWatchOutput --verbose --onSuccess 'sh -c "npm run resolve-tspaths:server && NODE_ENV=dev node dist/server"' server/tsconfig.json