ChristianMurphy/postcss-combine-duplicated-selectors

Handle selector groups

ChristianMurphy opened this issue · 0 comments

/* should not be grouped */
a b, a i {}
a i {}

/* should not be grouped */
a i {}
a b, a i {}

/* should be grouped */
a i, a b {}
a i, a b{}

/* should be grouped */
a i, a b {}
a b, a i {}

related to #8