Consider:
@include component (module) {
@include option(big) {
@include part(part) {
color: red;
}
}
}
With node-sass 3.3.3 the output (as I would expect) is:
.module.\--big .module__part {
color: red; }
With node-sass 3.4.1 the output is:
.module.\--big__part {
color: red; }
Is this a bug or an expected change? If the latter, how would I achieve the output of the first example?
Consider:
With node-sass 3.3.3 the output (as I would expect) is:
With node-sass 3.4.1 the output is:
Is this a bug or an expected change? If the latter, how would I achieve the output of the first example?