One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
#!/bin/bash | |
echo "Project Cleaning Begin" | |
echo "Cleaning React Cache" | |
rm -rf $TMPDIR/react-* | |
echo "Cleaning Metro Cache" | |
rm -rf $TMPDIR/metro-* | |
echo "Cleaning Watchman Cache" |
if (!Array.prototype.print) { | |
// eslint-disable-next-line no-extend-native | |
Array.prototype.print = function () { | |
if (this == null) { | |
throw new TypeError("this is null or not defined") | |
} | |
console.log(this) | |
return this | |
} | |
} |
if [ ! -f .env ] | |
then | |
export $(cat .env | xargs) | |
fi |