Skip to content

Commit 2faa950

Browse files
committed
Merge branch 'develop' of github.com:cables-gl/cables into develop
2 parents 33748ce + 50c7f7d commit 2faa950

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

gulpfile.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ function _watch(done)
7878
const basename = path.basename(file);
7979
return file.includes("/node_modules/") || basename.startsWith(".");
8080
} };
81-
gulp.watch(["src/core/**/*", "../shared/shared_constants.json", "../shared/client/**/*.js"], watchOptions, gulp.series(gulp.parallel(_core_js), _copy_ui));
82-
gulp.watch("src/corelibs/**/*", watchOptions, gulp.series(_core_libs_clean, gulp.parallel(_core_libs), _core_libs_copy));
81+
82+
buildWatcher.watch([".git/HEAD"], watchOptions, gulp.series(_core_js, _copy_ui));
83+
buildWatcher.watch(["src/core/**/*", "../shared/shared_constants.json", "../shared/client/**/*.js"], watchOptions, gulp.series(_core_js, _copy_ui));
84+
buildWatcher.watch("src/corelibs/**/*", watchOptions, gulp.series(_core_libs_clean, _core_libs, _core_libs_copy));
8385
if (config.watchOps) buildWatcher.notify(["src/ops/**/*.js"], watchOptions, "opchange");
8486
if (config.watchOps) buildWatcher.notify(["src/ops/**/att_*"], watchOptions, "attachmentchange");
8587

0 commit comments

Comments
 (0)