File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,13 @@ const tracingReplayBaseBundleConfig = makeBaseBundleConfig({
85
85
outputFileBase : ( ) => 'bundles/bundle.tracing.replay' ,
86
86
} ) ;
87
87
88
+ const replayFeedbackBaseBundleConfig = makeBaseBundleConfig ( {
89
+ bundleType : 'standalone' ,
90
+ entrypoints : [ 'src/index.bundle.replay.feedback.ts' ] ,
91
+ licenseTitle : '@sentry/browser (Replay, and Feedback)' ,
92
+ outputFileBase : ( ) => 'bundles/bundle.replay.feedback' ,
93
+ } ) ;
94
+
88
95
const tracingReplayFeedbackBaseBundleConfig = makeBaseBundleConfig ( {
89
96
bundleType : 'standalone' ,
90
97
entrypoints : [ 'src/index.bundle.tracing.replay.feedback.ts' ] ,
@@ -98,6 +105,7 @@ builds.push(
98
105
...makeBundleConfigVariants ( replayBaseBundleConfig ) ,
99
106
...makeBundleConfigVariants ( feedbackBaseBundleConfig ) ,
100
107
...makeBundleConfigVariants ( tracingReplayBaseBundleConfig ) ,
108
+ ...makeBundleConfigVariants ( replayFeedbackBaseBundleConfig ) ,
101
109
...makeBundleConfigVariants ( tracingReplayFeedbackBaseBundleConfig ) ,
102
110
) ;
103
111
Original file line number Diff line number Diff line change
1
+ import { browserTracingIntegrationShim } from '@sentry-internal/integration-shims' ;
2
+ import { feedbackAsyncIntegration } from './feedbackAsync' ;
3
+
4
+ export * from './index.bundle.base' ;
5
+
6
+ export { getFeedback , sendFeedback } from '@sentry-internal/feedback' ;
7
+
8
+ export {
9
+ browserTracingIntegrationShim as browserTracingIntegration ,
10
+ feedbackAsyncIntegration as feedbackAsyncIntegration ,
11
+ feedbackAsyncIntegration as feedbackIntegration ,
12
+ } ;
13
+
14
+ export { replayIntegration , getReplay } from '@sentry-internal/replay' ;
You can’t perform that action at this time.
0 commit comments