enable reloading when contents of layers are changed (in serve mode) (#567)

This commit is contained in:
Marcus Jaschen 2022-06-25 11:14:01 +02:00 committed by GitHub
parent 46a1a61138
commit 7eb94a473f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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'));
});