Romain Menke
Romain Menke
>helping to keep people's node modules folders as small as possible Autoprofixer is ±200kb in a random node_modules folder here. This is already tiny compared to other widely used projects....
Shipping larger bundles to modern browsers is not the same issue as package size in node_modules. The benefits of reducing package size in node_modules just do not weigh up to...
> There's already issues found with the IE prefixing done in this project from a quick glance at the issues list. How long do you suppose they should be fixed...
Current Releases already follow semantic versioning. I did not mean to question the logic behind the current versioning. I only suggested adding a flag that would return the currently installed...
@gpant I agree with you on the logic behind the versioning but that is besides the point. I opened this issue not to discus when to bump the version but...
is the white background actually transparant? Guetzli doesn't support images with transparency.
How did you batch them? Maybe the method used to batch doesn't handle errors correctly.
I wrote a tool which does just that. [https://github.com/romainmenke/simple-guetzli](https://github.com/romainmenke/simple-guetzli)
You can already achieve this behaviour by pointing the input and output args to the same file. IMHO adding this flag increases complexity of the cli without improving it.
@gtuk Try `guetzli ./my_image.jpeg ./my_image.jpeg`. Unless I am mistaken it will replace the original file with the output. `guetzli ./my_image.jpeg ./my_image.jpeg` vs `guetzli --overwrite ./my_image.jpeg` So this adds extra code...