From dbe85dff0ad2b690e1824fcea3ded95ff4b36275 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Mon, 28 Mar 2016 13:10:00 +1300 Subject: [PATCH] Watch admin SCSS files --- gulpfile.js | 3 +++ 1 file changed, 3 insertions(+) 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']); } })