コマンドを実行する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キャプテンの最新バージョンで実行しています。
この問題の原因は何ですか?