aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.babel.js
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-08-15 18:29:20 +0000
committerLibravatar GitHub <noreply@github.com>2021-08-15 20:29:20 +0200
commita5dd7ed72c689ed558e5a82ef32dfaa3512ba0c9 (patch)
tree5fdc7d8b540290e69edf7ec7191df60f77f7af89 /gulpfile.babel.js
parentdocs: add snap instructions to readme(#1797) (diff)
downloadferdium-app-a5dd7ed72c689ed558e5a82ef32dfaa3512ba0c9.tar.gz
ferdium-app-a5dd7ed72c689ed558e5a82ef32dfaa3512ba0c9.tar.zst
ferdium-app-a5dd7ed72c689ed558e5a82ef32dfaa3512ba0c9.zip
Minor cleanup of gulp (#1798)
Diffstat (limited to 'gulpfile.babel.js')
-rw-r--r--gulpfile.babel.js3
1 files changed, 2 insertions, 1 deletions
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() {
248 gulp.watch(paths.packages.watch, mvLernaPackages); 248 gulp.watch(paths.packages.watch, mvLernaPackages);
249 gulp.watch(paths.styles.watch, styles); 249 gulp.watch(paths.styles.watch, styles);
250 250
251 gulp.watch([paths.src, `${paths.javascripts.src}`, `${paths.styles.src}`], mvSrc); 251 gulp.watch([paths.src], mvSrc);
252 252
253 gulp.watch(paths.javascripts.watch, processJavascripts); 253 gulp.watch(paths.javascripts.watch, processJavascripts);
254 gulp.watch(paths.typescripts.watch, processTypescripts); 254 gulp.watch(paths.typescripts.watch, processTypescripts);
@@ -266,6 +266,7 @@ export function recipes() {
266 .src(paths.recipes.src, { since: gulp.lastRun(recipes) }) 266 .src(paths.recipes.src, { since: gulp.lastRun(recipes) })
267 .pipe(gulp.dest(paths.recipes.dest)); 267 .pipe(gulp.dest(paths.recipes.dest));
268} 268}
269
269export function recipeInfo() { 270export function recipeInfo() {
270 return gulp 271 return gulp
271 .src(paths.recipeInfo.src, { since: gulp.lastRun(recipeInfo) }) 272 .src(paths.recipeInfo.src, { since: gulp.lastRun(recipeInfo) })