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, + ); } /********************/