Answers for "yarn uninstall globally in linux"

17

how to uninstall a package with yarn

yarn remove <package_name>
Posted by: Guest on July-01-2020
1

yarn uninstall

brew: brew uninstall yarn

tarball: rm -rf "$HOME/.yarn"

npm: npm uninstall -g yarn

ubuntu: sudo apt-get remove yarn && sudo apt-get purge yarn

centos: yum remove yarn

windows: choco uninstall yarn
Posted by: Guest on February-09-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language