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

前端 未结 13 652
夕颜
夕颜 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

    Install Grunt in node_modules rather than globally

    Unable to find local Grunt likely means that you have installed Grunt globally.

    The Grunt CLI insists that you install grunt in your local node_modules directory, so Grunt is local to your project.

    This will fail:

    npm install -g grunt
    

    Do this instead:

    npm install grunt --save-dev
    

提交回复
热议问题