sqwish
sqwish copied to clipboard
empty multiline comments are parsed incorrectly
Code with empty multiline comments (/**/) gets parsed incorrectly, and could lead to chunks of CSS getting erased through minification, like this:
/**/
.any-code-here-is-erased {
display: none;
}
/**/
Agreed same issue here