From 909cbca7a63d2f328121c55d5eb032f4c0778605 Mon Sep 17 00:00:00 2001 From: kumavis Date: Wed, 28 Mar 2018 19:59:24 -0700 Subject: [PATCH] build - remove copy debug --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index a094356ac..739da162e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -350,7 +350,7 @@ function copyTask(opts){ return performCopy function performCopy(){ - let stream = gulp.src(source + pattern, { base: source }).pipe(debug({ title: source })) + let stream = gulp.src(source + pattern, { base: source }) destinations.forEach(function(destination) { stream = stream.pipe(gulp.dest(destination)) })