Merge pull request #3305 from lolmaus/patch-1

Gulp livereload: include subfolders to watch for changes in html and md
This commit is contained in:
Hakim El Hattab 2022-12-07 11:27:14 +01:00 committed by GitHub
commit 4fe3946cb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -278,7 +278,7 @@ gulp.task('package', gulp.series(() =>
'./lib/**', './lib/**',
'./images/**', './images/**',
'./plugin/**', './plugin/**',
'./**.md' './**/*.md'
], ],
{ base: './' } { base: './' }
) )
@ -286,7 +286,7 @@ gulp.task('package', gulp.series(() =>
)) ))
gulp.task('reload', () => gulp.src(['*.html', '*.md']) gulp.task('reload', () => gulp.src(['**/*.html', '**/*.md'])
.pipe(connect.reload())); .pipe(connect.reload()));
gulp.task('serve', () => { gulp.task('serve', () => {
@ -298,7 +298,7 @@ gulp.task('serve', () => {
livereload: true livereload: true
}) })
gulp.watch(['*.html', '*.md'], gulp.series('reload')) gulp.watch(['**/*.html', '**/*.md'], gulp.series('reload'))
gulp.watch(['js/**'], gulp.series('js', 'reload', 'eslint')) gulp.watch(['js/**'], gulp.series('js', 'reload', 'eslint'))
@ -316,4 +316,4 @@ gulp.task('serve', () => {
gulp.watch(['test/*.html'], gulp.series('test')) gulp.watch(['test/*.html'], gulp.series('test'))
}) })