当我运行gulp
命令时,我收到以下错误:
events.js:141
throw er; // Unhandled 'error' event
^
Error: write EPIPE
at Object.exports._errnoException (util.js:874:11)
at exports._exceptionWithHostPort (util.js:897:20)
at WriteWrap.afterWrite (net.js:763:14)
Velibors-MacBook-Pro:gulp3 vel$
当我imagemin
从gulpfile.js
.pipe(imagemin({
progressive: true,
interlaced: true,
svgoPlugins: [{removeUnknownsAndDefaults: false}, {cleanupIDs: false}]
}))
错误消失了,所有其他任务都没有错误地执行,但是当然,图像没有被缩小。
我在最新版本的 OSX Captain 上运行。
这个问题的原因可能是什么?