ekryski / less2sass

A little script to convert less to sass files
MIT License
273 stars 40 forks source link

extends are not transformed #14

Closed AndyOGo closed 7 years ago

AndyOGo commented 8 years ago

Less extends is not transformed to @extend

E.g. this:

.foo {
  display: block;
}

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

should become this:

.bar {
  @extend .foo;
}
ekryski commented 7 years ago

Fixed in v1.0.3