From a5dd7ed72c689ed558e5a82ef32dfaa3512ba0c9 Mon Sep 17 00:00:00 2001 From: Vijay Raghavan Aravamudhan Date: Sun, 15 Aug 2021 18:29:20 +0000 Subject: Minor cleanup of gulp (#1798) --- gulpfile.babel.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gulpfile.babel.js') diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 7311fc633..625d52e19 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -248,7 +248,7 @@ export function watch() { gulp.watch(paths.packages.watch, mvLernaPackages); gulp.watch(paths.styles.watch, styles); - gulp.watch([paths.src, `${paths.javascripts.src}`, `${paths.styles.src}`], mvSrc); + gulp.watch([paths.src], mvSrc); gulp.watch(paths.javascripts.watch, processJavascripts); gulp.watch(paths.typescripts.watch, processTypescripts); @@ -266,6 +266,7 @@ export function recipes() { .src(paths.recipes.src, { since: gulp.lastRun(recipes) }) .pipe(gulp.dest(paths.recipes.dest)); } + export function recipeInfo() { return gulp .src(paths.recipeInfo.src, { since: gulp.lastRun(recipeInfo) }) -- cgit v1.2.3-54-g00ecf