#!/bin/sh

if ! npm run lint; then
	echo "Please fix lint errors before committing"
	exit 1;
fi


npm run build
git add lib/server/dist lib/client/dist

exit 0