Tweak our JavaScript rewrites a bit to handle jspb.* imports.

This commit is contained in:
Joshua Haberman 2021-02-04 17:04:17 -08:00
parent beb70bb83e
commit e8aa635397

View File

@ -80,6 +80,8 @@ lineReader.on('line', function(line) {
if (isRequire) {
if (module) { // Skip goog.require() lines before the first directive.
var fullSym = isRequire[1];
// Skip lines importing from jspb.*, these are handled by the header above.
if (fullSym.match(/^jspb\./)) return;
var sym = tryStripPrefix(fullSym, pkg);
console.log("googleProtobuf.exportSymbol('" + fullSym + "', " + module + sym + ', global);');
}