mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
13 lines
225 B
Bash
Executable File
13 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
npm run build:server
|
|
|
|
# Angular does not support project references, it's the reason why we can't builds concurrently
|
|
if [ ! -z ${1+x} ]; then
|
|
npm run build:client -- $1
|
|
else
|
|
npm run build:client
|
|
fi
|