gulp less compile only changed file

772 Views Asked by At

i have problem, when i run gulp watch -> run task styles:build, and all of my less files was recompile. How i can compile only changed file?

gulp.task('styles:build', function () {
    return gulp.src(pathes.src.styles)
        .pipe(changed(pathes.build.styles), {extension: '.css'})
        .pipe(print(function(filepath) {
            return "➔ file was changed: " + filepath;
        }))
        .pipe(plumber())
        .pipe(less({
            plugins: [autoprefix, cleanCSSPlugin],
            paths: ['./', 'web/styles']
        }))
        .pipe(gulp.dest(pathes.build.styles))
});


gulp.task('watch', function() {
   gulp.watch(pathes.src.styles, ['styles:build'])
});

enter image description here

2

There are 2 best solutions below

4
On

You need to modify the line below to add a closing parenthsis:

.pipe(changed(pathes.build.styles, {extension: '.css'}))

Also as I cautioned the first time the task is run it probably will pass through all files.

0
On

i think i found solution just install lessChanged = require('gulp-less-changed') and include him before less pipe

.pipe(lessChanged())
.pipe(less())