Duplicate Module Name: react-native

前端 未结 5 1373
梦如初夏
梦如初夏 2021-02-01 14:38

I ran Pod Update in my XCode Project and now my project isn\'t compiling due to duplicate modules being downloaded. Anyone know any solutions?

Looki         


        
5条回答
  •  长发绾君心
    2021-02-01 14:42

    Try:

    1. watchman watch-del-all
    2. rm -fr $TMPDIR/react-*
    3. erase jest-cache folder
    4. rm -rf node_modules
    5. npm install
    6. npm cache clean && npm start -- --reset-cache

    Update

    Also try to download the latest node js and run npm install -g npm

提交回复
热议问题