i'm using phpstorm 6 , simpless compile less css.
i have set less file watcher in ide. fine , compiling works.
the problem when make changes .less file, ide runs simpless program , window of simpless program popup every time on running programs. it's annoying.
so, there chance disable simpless popup window?
thanks.
simpless gui application not designed used command line compiler. file watcher expects command line interface compiler.
on windows can use less compiler provided node.js less
module.
- install node.js if don't have already
npm install -g less
- add file watcher in phpstorm, path compiler should
c:\users\<user>\appdata\roaming\npm\lessc.cmd
orc:\program files (x86)\nodejs\lessc.cmd
. if remove existing less file watcher , again, phpstorm should find compiler path automatically.
Comments
Post a Comment