Reputation: 221
I have node.js installed and using npm install -g grunt
I managed to install grunt files. The process works well till now, but I run grunt command it is throwing me batch file error. what could be the reason? I did installed phonegap and it is able to find/set path easily but where as GRUNT not working, Pls help .
Upvotes: 0
Views: 5949
Reputation: 7862
From the the Grunt docs:
npm install -g grunt-cli
;npm install grunt --save-dev
(you don't need the --save-dev
option if you don't want to include it in your package.json
file).Upvotes: 6