mirror of https://github.com/status-im/metro.git
Use //# instead of //@ for sourceMappingURL comment
Summary: I had an issue debugging in chrome 48 on windows where source maps didn't work. I tried changing the sourceMappingURL comment to use the //# syntax instead and it fixed the problem. According to https://developers.google.com/web/updates/2013/06/sourceMappingURL-and-sourceURL-syntax-changed?hl=en the //@ syntax was deprecated for //#. Closes https://github.com/facebook/react-native/pull/4892 Reviewed By: martinbigio Differential Revision: D2781046 Pulled By: davidaurelio fb-gh-sync-id: 3b85f6153692a2e23509029ecf18dc51d35ba921
This commit is contained in:
parent
f2124b5544
commit
61c745b8e6
|
@ -14,7 +14,7 @@ const UglifyJS = require('uglify-js');
|
|||
const ModuleTransport = require('../lib/ModuleTransport');
|
||||
const Activity = require('../Activity');
|
||||
|
||||
const SOURCEMAPPING_URL = '\n\/\/@ sourceMappingURL=';
|
||||
const SOURCEMAPPING_URL = '\n\/\/# sourceMappingURL=';
|
||||
|
||||
const minifyCode = code =>
|
||||
UglifyJS.minify(code, {fromString: true, ascii_only: true}).code;
|
||||
|
|
|
@ -43,7 +43,7 @@ describe('Bundle', function() {
|
|||
expect(bundle.getSource({dev: true})).toBe([
|
||||
'transformed foo;',
|
||||
'transformed bar;',
|
||||
'\/\/@ sourceMappingURL=test_url'
|
||||
'\/\/# sourceMappingURL=test_url'
|
||||
].join('\n'));
|
||||
});
|
||||
|
||||
|
@ -90,7 +90,7 @@ describe('Bundle', function() {
|
|||
'transformed bar;',
|
||||
';require("bar");',
|
||||
';require("foo");',
|
||||
'\/\/@ sourceMappingURL=test_url',
|
||||
'\/\/# sourceMappingURL=test_url',
|
||||
].join('\n'));
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue