#!/bin/sh
#
# clean.sh
#
# Ensure that the present environment is cleaned in its entirety.
#

if [ "$(command -v watchman)" ]; then
    watchman watch-del-all
fi
rm -rf /tmp/metro-bundler-cache-*
rm -rf /tmp/haste-map-react-native-packager-*
rm -fr $TMPDIR/metro*
yarn cache clean
