From 7eb94a473f7b555771b87dd67347fb40d4d54e4e Mon Sep 17 00:00:00 2001 From: Marcus Jaschen Date: Sat, 25 Jun 2022 11:14:01 +0200 Subject: [PATCH] enable reloading when contents of `layers` are changed (in serve mode) (#567) --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index 1cc5c2d..a6e55c7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -218,6 +218,7 @@ gulp.task('watch', function () { gulp.watch(paths.changelog, gulp.series('changelog', 'reload')); gulp.watch(paths.locales, gulp.series('locales', 'reload')); gulp.watch(paths.styles, gulp.series('styles', 'reload')); + gulp.watch(paths.layers, gulp.series('layers', 'reload')); gulp.watch(paths.layersConfig, gulp.series('layers_config', 'reload')); gulp.watch(['./index.html'].concat(paths.images).concat(paths.fonts).concat(paths.locales), gulp.series('reload')); });