@sentry/core
Version:
Base implementation for all Sentry JavaScript SDKs
33 lines (28 loc) • 1.14 kB
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const version = require('./version.js');
/**
* A builder for the SDK metadata in the options for the SDK initialization.
*
* Note: This function is identical to `buildMetadata` in Remix and NextJS and SvelteKit.
* We don't extract it for bundle size reasons.
* @see https://github.com/getsentry/sentry-javascript/pull/7404
* @see https://github.com/getsentry/sentry-javascript/pull/4196
*
* If you make changes to this function consider updating the others as well.
*
* @param options SDK options object that gets mutated
* @param names list of package names
*/
function applySdkMetadata(options, name, names = [name], source = 'npm') {
const sdk = ((options._metadata = options._metadata || {}).sdk = options._metadata.sdk || {});
if (!sdk.name) {
sdk.name = `sentry.javascript.${name}`;
sdk.packages = names.map(name => ({
name: `${source}:@sentry/${name}`,
version: version.SDK_VERSION,
}));
sdk.version = version.SDK_VERSION;
}
}
exports.applySdkMetadata = applySdkMetadata;
//# sourceMappingURL=sdkMetadata.js.map