We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setting up minify option to true removing svg properties cx, cy, r.
true
cx
cy
r
I think this behaviour coming from clean-css@v4 package
clean-css@v4
var CleanCSS = require('clean-css'); var input = ` .test { cx: 0.5em; cy: 0.5em; fill: none; r: 0.2em; } `; var options = { /* options */ }; var output = new CleanCSS(options).minify(input); console.log(output.styles);
By changing it to clean-css version 5, should fix this issue
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Setting up minify option to
true
removing svg propertiescx
,cy
,r
.I think this behaviour coming from
clean-css@v4
packageBy changing it to clean-css version 5, should fix this issue
The text was updated successfully, but these errors were encountered: