I am using grunt-contrib-cssmin, which is a wrapper over the clean-css plugin.
I have tried every option to disable optimizations done by clean-css, I only want clean-css to minify my css files, but unfortunately its changing them, for example changing:
background:none;
to:
background:0 0;
How I can disable this optimization? This GitHub link shows these optimizations are done by clean-css.