timdouglas/sublime-less2css

Autoprefixer not working? anyone made it work?

Opened this issue · 0 comments

When I add this to a lessfile with "autoprefix": true,

a { transition: 1s; /* it will be prefixed */ }

It gives:

a {
  transition: 1s;
  /* it will be prefixed */
}

But it should add -webkit-transition: 1s;