NPM doesn't install module dependencies

前端 未结 16 1772
深忆病人
深忆病人 2020-12-02 06:39

This is my package.json for the module that I\'m including in the parent project:

{
  \"version\": \"0.0.1\",
  \"name\": \"module-name\",
  \"d         


        
16条回答
  •  青春惊慌失措
    2020-12-02 06:55

    I had very similar issue, removing entire node_modules folder and re-installing worked for me. Learned this trick from the IT Crowd show!

    rm -rf node_modules
    npm install
    

提交回复
热议问题