Skip to content

Instantly share code, notes, and snippets.

View whoislewys's full-sized avatar

Luis Gomez whoislewys

View GitHub Profile
@whoislewys
whoislewys / react-native-clean.sh
Created May 24, 2019 05:33
react-native-clean: get a clean build from a react-native project
# Clean a react-native project
# usage: react-native-clean
# or: `react-native-clean deep`
# `deep` arg will clean yarn cache
function react-native-clean() {
echo "removing node modules..."
rm -rf node_modules
echo "clearing tmpdirs..."
rm -rf $TMPDIR/react-*
rm -rf $TMPDIR/npm-*