diff --git a/gulpfile.js b/gulpfile.js index 72dc4ae43..2df69762a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -292,6 +292,9 @@ gulp.task('css', ['compile:css'], function () { rootCompileFolders.forEach(function (folder) { gulp.watch(folder + '/scss/**/*.scss', ['compile:css']); }); + + // Watch the .scss files in react components + gulp.watch('./admin/javascript/src/**/*.scss', ['compile:css']); } })