gulp-imagemin任务运行给出错误

时间:2016-11-28 17:05:11

标签: node.js npm gulp gulp-imagemin pngcrush

我正在尝试为生产服务器压缩我的图像,但在运行gulp-imagemin任务时遇到错误。

这是我的一项任务:

gulp.task('images', function(){
    gulp.src('builds/development/images/**/*.*')
    .pipe(gulpif(env === 'production', imageMin({
        progressive:true,
        svgoPlugins:[{removeViewBox:false}],
        use:[pngCrush()]
    })))
    .pipe(gulpif(env === 'production', gulp.dest('builds/production/images')))
    .pipe(connect.reload());
});

我得到以下痕迹:

events.js:141
      throw er; // Unhandled 'error' event
      ^
Error: spawn UNKNOWN
  at exports._errnoException (util.js:870:11)
  at ChildProcess.spawn (internal/child_process.js:298:11)
  at Object.exports.spawn (child_process.js:362:9)
  at ret.catch.module.exports.promise (C:\Users\user\desktop\workflows\node_modules\gulp-imagemin\node_modules\imagemin-jpegtran\node_modules\exec-buffer\node_modules\execa\index.js:139:26)
  at C:\Users\user\desktop\workflows\node_modules\gulp-imagemin\node_modules\imagemin-jpegtran\node_modules\exec-buffer\index.js:35:15

有人可以看看,并尝试提供一些解决方案。

提前致谢。

1 个答案:

答案 0 :(得分:0)

我在生产服务器上遇到了同样的问题,我尝试过:

  • 不带参数运行imagemin;
  • 检查所有可能的权限问题;
  • 将节点版本更改为最新版本;

解决方案是删除node_modules文件夹并再次运行npm install。 奇怪的是,它充当了魅力!