mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-14 16:39:47 +08:00
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:
committed by
Facebook Github Bot 5
parent
ab926cca33
commit
dc4d4863a2
@@ -39,7 +39,7 @@ describe('Minification:', () => {
|
||||
expect(uglify.minify).toBeCalledWith(code, objectContaining({
|
||||
fromString: true,
|
||||
inSourceMap: map,
|
||||
outSourceMap: filename,
|
||||
outSourceMap: true,
|
||||
}));
|
||||
});
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ function minify(filename, code, sourceMap) {
|
||||
const minifyResult = uglify.minify(code, {
|
||||
fromString: true,
|
||||
inSourceMap: sourceMap,
|
||||
outSourceMap: filename,
|
||||
outSourceMap: true,
|
||||
output: {
|
||||
ascii_only: true,
|
||||
screw_ie8: true,
|
||||
|
||||
Reference in New Issue
Block a user