Gulp only compiles LESS the first time I run it. It still sees my changes but doesn't update the compiled CSS file
问题 I'm a little new with gulp. I have an old Wordpress theme which I'm trying to use gulp with to compile the LESS files. My structure is like this: -theme --library ---less ----style.less (all the imports all of the less files) ----brew (all the less files are in this folder) ---css ----style.css (this is the compiled css file) -gulp-dev --node_modules --gulpfile.js --package.json And here is my gulpfile: var gulp = require('gulp'); var less = require('gulp-less'); var browserSync = require(