mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
💚 fix linux build due to excessive output
This commit is contained in:
@@ -202,8 +202,10 @@ function uglifyWithCopyrights() {
|
||||
var input = es.through();
|
||||
var output = input
|
||||
.pipe(flatmap(function (stream, f) {
|
||||
return stream
|
||||
.pipe(uglify({ preserveComments: preserveComments(f) }));
|
||||
return stream.pipe(uglify({
|
||||
preserveComments: preserveComments(f),
|
||||
warnings: false
|
||||
}));
|
||||
}));
|
||||
return es.duplex(input, output);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user