jit-grunt
jit-grunt copied to clipboard
Can't be installed with Grunt >1.0
when i try npm install -g jit-grunt it exits with the next warn:
npm WARN [email protected] requires a peer of grunt@>=0.4.0 but none was installed.
but grunt is already installed
I have the same issue
Is there anything that'd prevent us from upgrading to grunt V1?
Works fine for me. The peer dependency is configured correctly.
I don't think you have any grunt version installed. npm install -g grunt to install it.
However, I don't think you need to globally install jit-grunt, which is what -g does. You would usually only use this in individual projects, where you would install it locally:
npm install --save-dev grunt jit-grunt
It works fine, battle-tested. We just need to update peer dependency, I think.
17:02:12 npm WARN [email protected] requires a peer of grunt@>=0.4.0 but none was installed.
I don't want to install grunt@>=0.4.0, I guess we should bump the grunt version
This only seems to be an issue when installing with NPM 2, works fine with NPM 3