💚 cmon build machine

This commit is contained in:
Joao Moreno
2017-03-29 11:55:27 +02:00
parent 5063b65147
commit b7e71acc87
2 changed files with 10 additions and 2 deletions

View File

@@ -275,7 +275,11 @@ function uglifyWithCopyrights(): NodeJS.ReadWriteStream {
const output = input
.pipe(flatmap((stream, f) => {
return stream.pipe(uglify({
preserveComments: preserveComments(<FileWithCopyright>f)
preserveComments: preserveComments(<FileWithCopyright>f),
output: {
// linux tfs build agent is crashing, does this help?§
max_line_len: 3200000
}
}));
}));