Closed zakybilfagih closed 8 months ago
Adding comment regex to correctly handle comments #441
/* nice */ /* nice */ /* nice */ /* nice */ div { color: red; }
Before: WS WS WS WS WS TAG('div') WS LEFT_BRACE RIGHT_BRACE After: WS TAG('div') WS LEFT_BRACE RIGHT_BRACE
WS WS WS WS WS TAG('div') WS LEFT_BRACE RIGHT_BRACE
WS TAG('div') WS LEFT_BRACE RIGHT_BRACE
div /*nice*/ /* nice */ /*ice*/.b {}
Before: WS TAG('div') WS WS WS DOT TAG('b') WS LEFT_BRACE RIGHT_BRACE After WS TAG('div') WS DOT TAG('b') WS LEFT_BRACE RIGHT_BRACE
WS TAG('div') WS WS WS DOT TAG('b') WS LEFT_BRACE RIGHT_BRACE
WS TAG('div') WS DOT TAG('b') WS LEFT_BRACE RIGHT_BRACE
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Adding comment regex to correctly handle comments #441
Before:
WS WS WS WS WS TAG('div') WS LEFT_BRACE RIGHT_BRACE
After:WS TAG('div') WS LEFT_BRACE RIGHT_BRACE
Before:
WS TAG('div') WS WS WS DOT TAG('b') WS LEFT_BRACE RIGHT_BRACE
AfterWS TAG('div') WS DOT TAG('b') WS LEFT_BRACE RIGHT_BRACE