Removes some of the debug output

This commit is contained in:
2016-02-24 12:32:26 +01:00
parent 17c2f18193
commit 78acb0a1c7

View File

@@ -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)