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)