We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e302cb commit a8a1ceaCopy full SHA for a8a1cea
packages/tracing/rollup.bundle.config.js
@@ -1,9 +1,5 @@
1
-import replace from '@rollup/plugin-replace';
2
-
3
import { makeBaseBundleConfig, makeBundleConfigVariants } from '../../rollup/index.js';
4
5
-import pkg from './package.json';
6
7
const builds = [];
8
9
['es5', 'es6'].forEach(jsVersion => {
@@ -26,16 +22,6 @@ const replayBaseBundleConfig = makeBaseBundleConfig({
26
22
licenseTitle: '@sentry/tracing & @sentry/browser & @sentry/replay',
27
23
outputFileBase: () => 'bundles/bundle.tracing.replay',
28
24
includeReplay: true,
29
- packageSpecificConfig: {
30
- plugins: [
31
- replace({
32
- preventAssignment: true,
33
- values: {
34
- __SENTRY_REPLAY_VERSION__: JSON.stringify(pkg.version),
35
- },
36
- }),
37
- ],
38
39
25
});
40
41
builds.push(...makeBundleConfigVariants(replayBaseBundleConfig));
0 commit comments