vega-frontend-monorepo/docker/prepare-dist.sh
Ben 02c425f304
chore(trading): add playwright and market sim testing framework (#5199)
Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
Co-authored-by: dalebennett1992 <dalebennett1992@hotmail.co.uk>
2023-11-14 10:05:07 -08:00

20 lines
494 B
Bash
Executable File

#!/bin/bash -e
yarn --pure-lockfile
app=${1:-trading}
envCmd="yarn -f ./apps/${app}/.env.${2:-mainnet}"
yarn install
if [ "${app}" = "trading" ]; then
# Execute the command stored in envCmd and then run the nx export command
$envCmd && yarn nx export trading
DIST_LOCATION=dist/apps/trading/exported/
else
# Execute the command stored in envCmd and then run the nx build command
$envCmd && yarn nx build ${app}
DIST_LOCATION=dist/apps/${app}
fi
cp -r $DIST_LOCATION dist-result