collective / sc.recipe.staticresources

This package is used as a buildout recipe to bundle static resources for Plone add-ons using webpack.
Other
2 stars 0 forks source link

pngquant options.quality error #72

Open tuticapi opened 4 years ago

tuticapi commented 4 years ago

When the command bin/build-mysite is run It shows the error:

The solution that I have used is:

Change in the config.js file the value of pngquant.quality to array like this:

new code

 pngquant: {
   quality: [0.65, 0.90]
   },

old code

pngquant: {
    quality: "65-90",
 },