What is causing this error - “Fatal error: Unable to find local grunt”

前端 未结 13 668
夕颜
夕颜 2020-11-27 09:21

I removed the old version of grunt first, then I installed the new grunt version, and then I got this error:

D:\\www\\grunt-test\\grunt grunt-cli: The

13条回答
  •  暖寄归人
    2020-11-27 09:35

    If you already have a file package.json in the project and it contains grunt in dependency,

      "devDependencies": {
        "grunt": "~0.4.0",
    

    Then you can run npm install to resolve the issue

提交回复
热议问题