记一个使用grunt时遇到的问题

使用grunt压缩图片时,提示

Loading "imagemin.js" tasks...ERROR

>> Error: Cannot find module 'through'

各种尝试都报错,网上搜不到解决办法,最后在项目目录安装了 grunt-contrib-imagemin 搞定,也是醉了。

bash-3.2# sudo npm install grunt-contrib-imagemin

目录下本来安装了这个插件。目测是因为imagemin插件是从svn  checkout出来的,而grunt是通过npm安装的最新的。导致版本不匹配造成的。

你可能感兴趣的:(grunt)