NPM doesn't install module dependencies

前端 未结 16 1773
深忆病人
深忆病人 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 07:04

    You might need to install the grunt-cli, try this before doing a npm install:

    sudo npm install -g grunt-cli
    

    That fixes the grunt does not exit for me, you'll also need a valid grunt file.

    Source: https://stackoverflow.com/a/16456467/241294

提交回复
热议问题