user1452840
user1452840

Reputation: 221

grunt windows 7 path issue

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

Answers (1)

Rodrigo Medeiros
Rodrigo Medeiros

Reputation: 7862

From the the Grunt docs:

  • First, you need to install the grunt CLI, npm install -g grunt-cli;
  • Then, install grunt 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

Related Questions