metaplex/js/deploy-web.sh

14 lines
303 B
Bash
Raw Normal View History

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