#!/usr/bin/env bash

set -e
set -o pipefail

echo "Building app"
cd app
rm -rf dist
npm run build
cd ..