UNPKG

@bugsnag/source-maps

Version:

CLI and JS library for uploading source maps to Bugsnag

50 lines 2.56 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const path_1 = __importDefault(require("path")); function stripProjectRoot(sourceMapPath, sourceMap, projectRoot, logger) { return __awaiter(this, void 0, void 0, function* () { logger.debug('Stripping project root from sources'); if (!sourceMap || typeof sourceMap !== 'object') return sourceMap; const maybeSourceMap = sourceMap; if (maybeSourceMap.sections) { for (const section of maybeSourceMap.sections) { if (section.map) strip(sourceMapPath, section.map, projectRoot); } } else { strip(sourceMapPath, maybeSourceMap, projectRoot); } return maybeSourceMap; }); } exports.default = stripProjectRoot; function strip(sourceMapPath, map, projectRoot) { if (!map.sources) return; map.sources = map.sources.map(s => { // leave sources for virtual webpack files untouched if (/^webpack:\/\/(.*)\/webpack/.test(s)) return s; // If the source path is a webpack path and we are running on Windows, // we normalize the path separators to URI format const isWebPackOnWindows = s.indexOf('webpack') > -1 && process.platform === 'win32'; const absoluteSourcePath = path_1.default.resolve(path_1.default.dirname(sourceMapPath), s.replace(/webpack:\/\/.*\/\.\//, `${projectRoot}/`)); const strippedSourcePath = absoluteSourcePath.replace(projectRoot, '').replace(/^(\/|\\)/, ''); return isWebPackOnWindows ? strippedSourcePath.replace(/\\/g, '/') : strippedSourcePath; }); } //# sourceMappingURL=StripProjectRoot.js.map