node-cssmin icon indicating copy to clipboard operation
node-cssmin copied to clipboard

A little node module that minimize CSS Files

Results 8 node-cssmin issues
Sort by recently updated
recently updated
newest added

Piping to a file is different in Windows verses Mac/Linux, so it'd be really helpful to have a `-o` option.

~~Can this be added, please?~~ Looked through the source - can this be documented in the README, please?

This fiddle should show why this is necessary: https://jsfiddle.net/wb5ogcjc/

Hello, cssmin is logging output to `stderr` or exiting with non-zero exit code, which is causing an error to be logged in our Maven build process, even though it completes...

write result to file from second arg in cli

See https://jsfiddle.net/wb5ogcjc/ for why these spaces are necessary. Right now, "@supports not (foo)" gets compressed to "@supports not(foo)" which doesn't work as per the fiddle (and the CSS standard). #19...

This expression (css blur for Firefox) : ``` .blur { filter: url('data:image/svg+xml;utf8,#gaussian_blur'); } ``` Is minified like this : ``` .blur{filter:url("data:image/svg+xml;utf8,#gaussian_blur")} ``` Spaces are removed where they should not :...

cssmin ignore DXImageTransform ! Input ``` css p{ opacity: 0; -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); filter: alpha(opacity=0); } ``` Output ``` css p{opacity:0;-ms-filter:alpha(opacity=0);filter:alpha(opacity=0)} ```