evanliomain / css-battle-toolbox

2 stars 0 forks source link

Miss a whitespace deletion on minification #5

Open evanliomain opened 19 hours ago

evanliomain commented 19 hours ago

It seems to come from the "missing" ; before }.

Tsaeko commented 16 hours ago

Adding the rule at the bottom this should remove whitespace around these characters

"{" "}" ":" ";" ","

.replaceAll(/\s*([{}:;,])\s*/g, "$1")