minify-maven-plugin
minify-maven-plugin copied to clipboard
breaks calculated values
My source file has this:
.foo {
font-size: calc(0.5em + 1vw);
}
The plugin changes this to:
.foo{font-size:calc(0.5em+1vw)}
This is invalid and breaks the value.
This is is a blocker issue. The plugin is broken; I cannot use it.
This seems to be a YUI issue: https://github.com/yui/yuicompressor/issues/268 .