Make watch tasks run sequentially in gulpfile

font-awesome
Nick Krichevsky 2018-06-28 23:30:51 -04:00
parent 574c36f81c
commit 99a99dae34
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ gulp.task("watch", () => {
Object.keys(WATCH_MAPPINGS).forEach((dir) => {
let globbedPath = path.join(dir, "*");
let tasks = WATCH_MAPPINGS[dir];
let watchTask = gulp.watch(globbedPath, tasks);
let watchTask = gulp.watch(globbedPath, () => sequence(...tasks));
watchTask.on("change", (file) => {
let relativePath = path.relative(__dirname, file.path);
log(`[${chalk.blue(tasks.join(", "))}] Change detected: ${chalk.green(relativePath)}`);