mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
280ec6e1eb
Summary: We appended a `sourceMappingURL` in the same place where we write out the files. This will break output that is not a plain text file, like Random Access Bundles. This moves the corresponding logic into the function that builds the bundle. Reviewed By: cpojer Differential Revision: D5061039 fbshipit-source-id: 17fadb5a687c8d4b1f29439e8bf946bae58eb2d9
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright (c) 2016-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
const {createIndexMap} = require('./source-map');
|
|
const {addModuleIdsToModuleWrapper} = require('./util');
|
|
|
|
import type {OutputFn} from '../types.flow';
|
|
|
|
module.exports = (
|
|
(modules, filename, idForPath, sourceMapPath) => {
|
|
let code = '';
|
|
let line = 0;
|
|
const sections = [];
|
|
|
|
for (const module of modules) {
|
|
const {file} = module;
|
|
const moduleCode = file.type === 'module'
|
|
? addModuleIdsToModuleWrapper(module, idForPath)
|
|
: file.code;
|
|
|
|
code += moduleCode + '\n';
|
|
if (file.map) {
|
|
sections.push({
|
|
map: file.map,
|
|
offset: {column: 0, line},
|
|
});
|
|
}
|
|
line += countLines(moduleCode);
|
|
}
|
|
|
|
if (sourceMapPath) {
|
|
code += `/*# sourceMappingURL=${sourceMapPath}*/`;
|
|
}
|
|
|
|
return {code, map: createIndexMap({file: filename, sections})};
|
|
}: OutputFn);
|
|
|
|
const reLine = /^/gm;
|
|
function countLines(string: string): number {
|
|
//$FlowFixMe This regular expression always matches
|
|
return string.match(reLine).length;
|
|
}
|