You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, if a property-value pair was followed by a linebreak and anything
but property, import or include (e.g. ruleset or condition),
the pair appeared twice in the result code.
For example,
a {
color: tomato;
span {foo: bar}}
would become:
a {
color: tomato;
color: tomato;
span {foo: bar}}
That was due to incorrect removal of spaces form `deleted` array.
This commit fixes the issue.
0 commit comments