How can I uninstall yarn? I\'ve used it for a react-native project and now whenever I move the code out of index.ios.js or index.android.js it thro
index.ios.js
index.android.js
Depends on how you installed it:
brew: brew uninstall yarn
brew uninstall yarn
tarball: rm -rf "$HOME/.yarn"
rm -rf "$HOME/.yarn"
npm: npm uninstall -g yarn
npm uninstall -g yarn
ubuntu: sudo apt-get remove yarn && sudo apt-get purge yarn
sudo apt-get remove yarn && sudo apt-get purge yarn
centos: yum remove yarn
yum remove yarn
windows: choco uninstall yarn
choco uninstall yarn