You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[15:39:56] Error in plugin "gulp-responsive"
Message:
File `xxx.jpg`: image.max is not a function
Details:
domainEmitter: [object Object]
domainThrown: false
Stack:
at DestroyableTransform.through2Handler [as _transform] (D:\...\node_modules\gulp-responsive\lib\index.js:98:14)
The text was updated successfully, but these errors were encountered:
Since this project seems to be inactive, even just for the moment (#111), I've gone ahead and created a completely new plugin for this purpose on my own: https://github.com/robinloeffel/gulp-rezzy. It uses sharp under the hood, as well.
Sharp max function is deprecated. Instead we need to use the Sharp fit param.
I made a pull request that add the fit param to gulp-responsive config : #146
Usage of
max
configuration option causes an errorimage.max is not a function
.From what I can tell the error comes from sharp, and occurs because the
max
function was deprecated - see: https://sharp.pixelplumbing.com/changelog#v0210---4supthsup-october-2018The text was updated successfully, but these errors were encountered: