Answer the question
In order to leave comments, you need to log in
What to use to autocompile less?
Some kind of watcher is needed to compile less, the files are scattered like this:
...\less\ globals.less
...\less\ main.less
...\css\main.css
...\js\components\ my .component.less
...\js\components\my.component.css I
currently use tsc run autoless, but:
Answer the question
In order to leave comments, you need to log in
If you want, you can take my code for gulp :
In gulp-tasks/config.js it says :
config.common = {
sourceDir: "source", // Общая папка для исходников, можно указать "." для корня
buildDir: "dist" // Общая папка для сборки "." для корня
};
config.css = {
buildDir: "style", // Папка для сборки стилей (внутри config.common.buildDir, указанного выше)
fileName: "style", // Имя получаемого CSS файла
autoprefixerOptions: "" // На свой вкус
};
config.less = {
// ...
sourceDir: "style", // Папка для исходников less стилей (внутри config.common.sourceDir, указанного выше)
mainFile: "main", // Главный less файл, который будет собираться
// ...
};
gulp less:watch
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question