ekryski/less2sass

extends are not transformed

Closed this issue · 1 comments

Less extends is not transformed to @extend

E.g. this:

.foo {
  display: block;
}

.bar {
  &:extend(.foo);
}

should become this:

.bar {
  @extend .foo;
}

Fixed in v1.0.3