#!/bin/bash
browserify ./src/apg-exp/web-exports.js > temp-bundle.js
minify temp-bundle.js > ./dist/apg-exp-bundle.js
rm temp-bundle.js
exit 0

