mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 09:49:20 +02:00
15 lines
377 B
Bash
Executable file
15 lines
377 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
if [ -z ${1+x} ] || [ "$1" != "--incremental" ]; then
|
|
rm -rf ./dist ./packages/*/dist
|
|
fi
|
|
|
|
npm run tsc -- -b --verbose server/tsconfig.json
|
|
npm run resolve-tspaths:server
|
|
|
|
cp -r "./server/core/static" "./server/core/assets" ./dist/core
|
|
cp "./server/scripts/upgrade.sh" "./dist/scripts"
|
|
|
|
mkdir -p ./client/dist && cp -r ./client/src/assets ./client/dist
|