From 78acb0a1c72dc641983a787f16f28f4b235141a2 Mon Sep 17 00:00:00 2001 From: Alexandre Tuleu Date: Wed, 24 Feb 2016 12:32:26 +0100 Subject: [PATCH] Removes some of the debug output --- gulpfile.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index bf74c17..46f0eaf 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -31,8 +31,7 @@ pipes.bowerFiles = function() { ] } } - }),{base: 'webapp/bower_components'}) - .pipe(plugins.debug({title:'bower-file'})); + }),{base: 'webapp/bower_components'}); } pipes.bowerFilesMinified = function() { @@ -42,8 +41,7 @@ pipes.bowerFilesMinified = function() { if (exists(testpath)) { path.extname = '.min' + path.extname; } - })) - .pipe(plugins.debug({title: 'bower-file-minimized:'})); + })); } pipes.validatedAppScripts = function() { @@ -97,7 +95,6 @@ pipes.builtIndexProd = function() { var filterJS = plugins.filter('**/*.js',{restore: true}); var vendorFiles = pipes.bowerFiles() .pipe(filterJS) - .pipe(plugins.debug({title:'non-minified-vendor:'})) .pipe(plugins.concat('vendor.min.js')) .pipe(plugins.uglify()) .pipe(filterJS.restore)