also watch for pack changes
This commit is contained in:
parent
b806b5f35f
commit
4e5d7416ee
1 changed files with 5 additions and 1 deletions
|
@ -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,
|
||||
);
|
||||
}
|
||||
|
||||
/********************/
|
||||
|
|
Loading…
Reference in a new issue