How Do I Uninstall Yarn

前端 未结 19 1406
醉话见心
醉话见心 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:08

    remove yarn

    # macOS & brew
    $ brew uninstall yarn
    
    
    

    remove npm package

    yarn global remove

    # yarn global remove
    $ sudo yarn global remove @tarojs/cli
    
    
    # yarn global add 
    $ sudo yarn global add @tarojs/cli
    
    
    

    refs

    https://classic.yarnpkg.com/en/docs/cli/global/

    https://classic.yarnpkg.com/en/docs/cli/remove/

提交回复
热议问题