'grunt' command doesn't do anything

不羁岁月 提交于 2019-12-05 00:12:47

So it looks like this was an environment setup issue. I had an ubuntu package called node installed as well as nodejs which was preventing the packages installed through npm from working. Running the following command fixed the issue.

sudo apt-get --purge remove node

I had the same problem. Grunt was not responding. No output was being displayed. Removing node and installing nodejs-legacy worked for me.

Removing node by:

sudo apt-get --purge remove node

and installing legacy by:

sudo apt-get install nodejs-legacy
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!