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;`