mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-20 11:48:31 -06:00
16 lines
275 B
Bash
Executable File
16 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
rm -rf ./dist/server/tools/
|
|
|
|
(
|
|
cd ./server/tools
|
|
yarn install --pure-lockfile
|
|
)
|
|
|
|
mkdir -p "./dist/server/tools"
|
|
cp -r "./server/tools/node_modules" "./dist/server/tools"
|
|
|
|
npm run tsc -- --watch --sourceMap --project ./server/tools/tsconfig.json
|