ekryski / less2sass

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

Mixins with 0 arguments are not transformed properly #13

Closed AndyOGo closed 7 years ago

AndyOGo commented 8 years ago

This:

.foo() {
  display: block;
}

should be transformed to:

@mixin foo() {
  display: block;
}

but it is not

ekryski commented 7 years ago

Fixed in v1.0.3