Autoprefixer in file watcher

Hello! I made it earlier, but not remember, how to custom File watcher for LESS -> CSS with autoprefixer.

it was like

--no-color $FileName$ --autoprefix "last 2 versions"  

but now it isn't working

I won't use gulp or etc. I have Node.js + npm and Less / Sass support and autoprefixer plugins

Please help me :)

1
2 comments

What doesn't work namely?does the same command work in terminal?

the following file watcher works for me (Lessc 2.7.2, less-plugin-autoprefix 1.5.1)

enter image description here

.cls {
    display: flex;
}

is transpiled into

.cls {
  display: -ms-flexbox;
  display: flex;
}
2
Avatar
Permanently deleted user

Thank you, I'll try it soon and reply to you :) Thanks (Spasibo bolshoe). I like to coding in your apps :)

0

Please sign in to leave a comment.