mirror of https://github.com/Chocobozzz/PeerTube
14 lines
310 B
Bash
Executable File
14 lines
310 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"
|