extends are not transformed
Closed this issue · 1 comments
AndyOGo commented
Less extends is not transformed to @extend
E.g. this:
.foo {
display: block;
}
.bar {
&:extend(.foo);
}
should become this:
.bar {
@extend .foo;
}
ekryski commented
Fixed in v1.0.3