contra
contra
@Privatecoder What node version are you on?
@Privatecoder Thought that would be the case - I saw the same issue on 12 and 13, I make sure to just use 15 because streams had a few odd...
This seems like a good opportunity to eliminate a dependency and use `import fs from 'fs/promises'` + `rmdir` since this example was written before fs/promises existed del was the cleanest...
Add `{encoding: false}` to any gulp.src call where you are using binary files - see now docs and release blog for v5 for info.
Sorry, the code wasn't formatted in the issue very well and I was looking at the SVG logic. With encoding: false it shouldn't make any changes to the file at...
To simplify further and fix the globs in the code, does this reproduce? ```js import gulp from 'gulp' export const imgtinify = () => gulp .src('app/images/**/*.{jpg,jpeg,png,gif,webp}', { base: 'app', encoding:...
> I think I found the cause of the problem: line 34 in write-stream.js is currently reading _... encoding.enc !== ..._. It should be _... codec.enc !== ..._ instead. After...
Has anyone managed to get this to work on both the X and Y axis? The code above works great for X but Y is a little trickier, since you...
Want to add a nextjs section to the README as a PR?
What version of node was this run on specifically? And I'm assuming gulp v5?