Leaving the Grunt and its relatives as dependencies will cause them to be installed on every npm install, which is causing errors on Windows without Python installed, and they are not gonna be used.
Simply moving all grunt-* packages from dependencies to devDependencies should solve this issue.
Leaving the Grunt and its relatives as dependencies will cause them to be installed on every
npm install, which is causing errors on Windows without Python installed, and they are not gonna be used.Simply moving all
grunt-*packages from dependencies to devDependencies should solve this issue.