metaplex/js/deploy-web.sh

15 lines
318 B
Bash
Executable File

#!/usr/bin/env bash
echo "Starting to deploy 'web', bootstrapping..."
yarn bootstrap
echo "Preparing 'common'..."
cd packages/common || exit
yarn prepare
yarn build-css
cd ../web || exit
echo "Prestarting 'web'..."
yarn prestart
echo "Building 'web'..."
# TODO: fix linting errors!
CI=false && yarn build
echo "#done"