Skip to content

Commit 2365841

Browse files
committed
fix
1 parent a0aa825 commit 2365841

File tree

4 files changed

+2
-85
lines changed

4 files changed

+2
-85
lines changed

packages/browser/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const INTEGRATIONS = {
2020

2121
export { INTEGRATIONS as Integrations };
2222

23-
export { Replay, ReplayCanvas } from '@sentry/replay';
23+
export { Replay } from '@sentry/replay';
2424
export type {
2525
ReplayEventType,
2626
ReplayEventWithTime,

packages/replay/rollup.bundle.config.mjs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,6 @@ const baseBundleConfig = makeBaseBundleConfig({
88
outputFileBase: () => 'bundles/replay',
99
});
1010

11-
const baseCanvasBundleConfig = makeBaseBundleConfig({
12-
bundleType: 'addon',
13-
entrypoints: ['src/canvas.ts'],
14-
jsVersion: 'es6',
15-
licenseTitle: '@sentry/replaycanvas',
16-
outputFileBase: () => 'bundles/replaycanvas',
17-
});
18-
19-
const builds = [...makeBundleConfigVariants(baseBundleConfig), ...makeBundleConfigVariants(baseCanvasBundleConfig)];
11+
const builds = makeBundleConfigVariants(baseBundleConfig);
2012

2113
export default builds;

packages/replay/src/canvas.ts

Lines changed: 0 additions & 74 deletions
This file was deleted.

packages/replay/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
export { Replay } from './integration';
2-
export { ReplayCanvas } from './canvas';
32

43
export type {
54
ReplayConfiguration,

0 commit comments

Comments
 (0)