From 4e5d7416ee5ac049b945d19893fcceeed869e1fe Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Thu, 21 Jan 2021 01:24:17 +0100 Subject: [PATCH] also watch for pack changes --- gulpfile.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 41bff1f..a6ef12f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -154,7 +154,11 @@ async function copyFiles() { function buildWatch() { gulp.watch("src/**/*.ts", { ignoreInitial: false }, buildTS); gulp.watch("src/**/*.scss", { ignoreInitial: false }, buildSASS); - gulp.watch(["src/fonts", "src/lang", "src/templates", "src/*.json"], { ignoreInitial: false }, copyFiles); + gulp.watch( + ["src/fonts", "src/lang", "src/templates", "src/*.json", "src/packs"], + { ignoreInitial: false }, + copyFiles, + ); } /********************/