mirror of https://github.com/Chocobozzz/PeerTube
Fix npm run dev
parent
302cb3f92e
commit
99ae9d3a9e
|
@ -5,7 +5,7 @@ set -eu
|
|||
clientCommand="cd client && node node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000"
|
||||
serverCommand="npm run build:server && NODE_ENV=test node dist/server"
|
||||
|
||||
if [ ! -z ${1+x} ] && [ "$1" == "--skip-server" ]; then
|
||||
if [ ! -z ${1+x} ] && [ "$1" = "--skip-server" ]; then
|
||||
NODE_ENV=test eval $clientCommand
|
||||
else
|
||||
NODE_ENV=test node node_modules/.bin/concurrently -k \
|
||||
|
|
|
@ -4,4 +4,4 @@ set -eu
|
|||
|
||||
NODE_ENV=test npm run concurrently -- -k \
|
||||
"sh scripts/dev/client.sh --skip-server" \
|
||||
"sh scripts/dev/server.sh"
|
||||
"sh scripts/dev/server.sh --skip-client"
|
||||
|
|
|
@ -3,8 +3,10 @@
|
|||
set -eu
|
||||
|
||||
if [ ! -f "./client/dist/en-US/index.html" ]; then
|
||||
echo "client/dist/en-US/index.html does not exist, compile client files..."
|
||||
npm run build:client -- --light
|
||||
if [ -z ${1+x} ] || [ "$1" != "--skip-client" ]; then
|
||||
echo "client/dist/en-US/index.html does not exist, compile client files..."
|
||||
npm run build:client -- --light
|
||||
fi
|
||||
fi
|
||||
|
||||
# Copy locales
|
||||
|
|
Loading…
Reference in New Issue