gulpjs / gulp

A toolkit to automate & enhance your workflow

Home Page:https://gulpjs.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gulp v5.0.0 png and jpg images not opening after transferring via gulp

sharnirio-work opened this issue · comments

What actually happened?

The pictures jpg & png format are broken and don't work after copy from "src" to "dest"

Please give us a sample of your gulpfile

Full example - repo

Gulp file code:

`const { src, dest } = require('gulp');

function defaultTask(cb) {
return src("img/*.+(jpg|png|svg)")
.pipe(dest('img-after/'));
cb();
}

exports.default = defaultTask`

As you can see the pictures break and stop working. Original image link and image after gulp transferring link

Please provide the following information:

Windows 11
node -v : v18.19.0
npm -v : 10.4.0
gulp -v: CLI version: 3.0.0 Local version: 5.0.0

Docs have been updated: https://github.com/gulpjs/gulp/blob/master/docs/api/src.md#options

You need to add { encoding: false } for binary files.