Bauke/tildes-issue-log
Bauke
/
tildes-issue-log
Archived
1
Fork 0

fix: add building before loading browser with gulp.watch

This commit is contained in:
Bauke 2019-01-30 14:56:22 +01:00
parent fea841e873
commit 7f9fad3185
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 1 additions and 1 deletions

View File

@ -360,4 +360,4 @@ exports.build = gulp.series(lintSCSS, gulp.parallel(buildHTML, buildCSS, b
exports.download = gulp.series(download, gulp.parallel(createIssueTable, createStatistics))
exports.no_download = gulp.parallel(createIssueTable, createStatistics)
exports.lint = lintSCSS
exports.watch = watch
exports.watch = gulp.series(lintSCSS, gulp.parallel(buildHTML, buildCSS, buildExtra), watch)