#!/bin/bash

BASE_DIR="$(npm prefix)"

cd $BASE_DIR

find ./bin -mindepth 1 -type f -delete

[[ ! -d dist ]] && mkdir .build

exit 0
