support sourceMappingURL being located at the beginning of the file

master
Brock Pytlik 12 years ago
parent dee77a507c
commit fe649c7493

@ -7,7 +7,7 @@ function mapSourcePosition(cache, position) {
if (!sourceMap && fs.existsSync(position.source)) {
// Get the URL of the source map
var fileData = fs.readFileSync(position.source, 'utf8');
var match = /\/\/@\s*sourceMappingURL=(.*)\s*$/.exec(fileData);
var match = /\/\/@\s*sourceMappingURL=(.*)\s*$/m.exec(fileData);
if (!match) return position;
var sourceMappingURL = match[1];

Loading…
Cancel
Save