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:
commit
4fe3946cb4
|
@ -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'))
|
||||
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue