Gulp livereload: include subfolders to watch for changes in html and md

Currently it's only watching for changes to `.html` and `.md` files located in the root of the project. I was frustrated when livereload stopped working for me: turns out it was because I put my content into subfolders.
This commit is contained in:
Andrey Mikhaylov (lolmaus) 2022-10-24 14:06:31 +03:00 committed by GitHub
parent f6f657b627
commit 8492b82d12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

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