Make uglify not append //# sourceMappingURL=

Summary: We also need a more recent version of uglify that supports this

Reviewed By: martinbigio

Differential Revision: D3024959

fb-gh-sync-id: f9efdddceda4f726567c39884c844a8e74e6e09d
shipit-source-id: f9efdddceda4f726567c39884c844a8e74e6e09d
This commit is contained in:
David Aurelio 2016-03-08 12:21:25 -08:00 committed by Facebook Github Bot 5
parent 3f072d22ea
commit faaafd771e
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ describe('Minification:', () => {
expect(uglify.minify).toBeCalledWith(code, objectContaining({ expect(uglify.minify).toBeCalledWith(code, objectContaining({
fromString: true, fromString: true,
inSourceMap: map, inSourceMap: map,
outSourceMap: filename, outSourceMap: true,
})); }));
}); });

View File

@ -14,7 +14,7 @@ function minify(filename, code, sourceMap) {
const minifyResult = uglify.minify(code, { const minifyResult = uglify.minify(code, {
fromString: true, fromString: true,
inSourceMap: sourceMap, inSourceMap: sourceMap,
outSourceMap: filename, outSourceMap: true,
output: { output: {
ascii_only: true, ascii_only: true,
screw_ie8: true, screw_ie8: true,