From 7f9fad31855a4632516db3ec3a8b472ecfd977cc Mon Sep 17 00:00:00 2001 From: Bauke Date: Wed, 30 Jan 2019 14:56:22 +0100 Subject: [PATCH] fix: add building before loading browser with gulp.watch --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 06f6e7f..0482619 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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)