文件观察器JetBrains IDE中的自动修复程序

时间:2017-10-13 17:15:37

标签: css node.js less jetbrains-ide autoprefixer

我之前做过,但不记得了,如何为LESS定制文件观察器 - >带autoprefixer的CSS。 就像

--no-color $FileName$ --autoprefix="last 5 versions"  

但现在它无效。

my File Watcher settings. 我不会使用gulp 等。我有 Node.js + npm Less / Sass支持 autoprefixer插件 less-plugin-autoprefix 我使用了https://github.com/less/less-plugin-autoprefix

中的npm install -g less-plugin-autoprefix

1 个答案:

答案 0 :(得分:3)

适用于我(Lessc 2.7.2,less-plugin-autoprefix 1.5.1)

enter image description here

.cls {
    display: flex;
}

被转化为

.cls {
  display: -ms-flexbox;
  display: flex;
}