postcss/postcss-nested

Nested custom at-rules issues

bsak-shell opened this issue · 1 comments

There are several issues related to the custom at-rule nesting (#81, #124, #123). This issue is to fix the below general behaviour:


Example 1 (bubbling up custom childless at-rules):

@media screen { .two { @mixin test } }

Expected output:

@media screen { .two { @mixin test } }

Actual output:

@media screen { @mixin test; }

Example 2 (bubbling up all at-rules, ignoring the option setting):

@media screen { .three { @mixin test { color: black } } }

Expected output:

@media screen { .three { @mixin test { color: black } } }

Actual output:

@media screen { @mixin test { .three { color: black } } }
ai commented

Thanks. Released in 5.0.6.