#!/usr/bin/env bash

set -e

# Remove any current build output
rm -rf dist/

# Recreate the build output directory
mkdir dist/

# Run the build script
npm run build
