`@import "grid.less"; .reset(); #wrapper { .wrapper(); } #main { display: flex; } ` 

Question: Everything works correctly, but when you make changes to the connected Grid.less file, gulp does not compile these changes into the main css.

    1 answer 1

    You need to add this file to your Gulp Watch. It looks like this:

     gulp.task('watch', function() { watch('./less/grid.less', function() { gulp.start('less') }); });