Когда я пытаюсь скомпилировать файлы scss с помощью веб-компилятора, соответствующие файлы rtl.css не генерируются. Те же самые файлы, которые я устал компилировать с использованием Web Essentials 2015, генерируют файлы RTL.
Я изменил настройки в compilerconfig.json.defaults, добавив код "rtlcss": {"config": true} "внутри параметров компилятора, но он не работает.
compilerconfig.json.defaults
{
"compilers": {
"less": {
"autoPrefix": "",
"cssComb": "none",
"ieCompat": true,
"strictMath": false,
"strictUnits": false,
"relativeUrls": true,
"rootPath": "",
"sourceMapRoot": "",
"sourceMapBasePath": "",
"sourceMap": true
},
"sass": {
"includePath": "",
"indentType": "space",
"indentWidth": 2,
"outputStyle": "nested",
"Precision": 5,
"relativeUrls": true,
"sourceMapRoot": "",
"sourceMap": true
},
"stylus": {
"sourceMap": false
},
"babel": {
"sourceMap": false
},
"coffeescript": {
"bare": false,
"runtimeMode": "node",
"sourceMap": false
},
"rtlcss": { "config": true }
},
"minifiers": {
"css": {
"enabled": true,
"termSemicolons": true,
"gzip": false
},
"javascript": {
"enabled": true,
"termSemicolons": true,
"gzip": false
}
}
}
Пожалуйста, помогите мне найти решение. Заранее спасибо