I recently tried to set up some Grunt plugins such as grunt-contrib-clean
and grunt-contrib-watch
using the commands
npm install grunt-contrib-clean --save-dev
and npm install grunt-contrib-watch --save-dev
However, I encountered the following warnings:
npm WARN [email protected] requires a peer of grunt@~0.4.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of grunt@~0.4.0 but none is installed. You must install peer dependencies yourself.
npm WARN [email protected] requires a peer of grunt@~0.4.1 but none is installed. You must install peer dependencies yourself.
Does anyone know how I can resolve these issues?
Your assistance is greatly appreciated.