How Do I Uninstall Yarn

前端 未结 19 1407
醉话见心
醉话见心 2020-12-22 17:45

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

19条回答
  •  太阳男子
    2020-12-22 18:24

    Depends on how you installed it:

    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

提交回复
热议问题