File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,10 @@ targets:
28
28
- name : npm
29
29
id : ' @sentry/opentelemetry'
30
30
includeNames : /^sentry-opentelemetry-\d.*\.tgz$/
31
+ # # 1.7 Feedback package (browser only)
32
+ - name : npm
33
+ id : ' @sentry-internal/feedback'
34
+ includeNames : /^sentry-internal-feedback-\d.*\.tgz$/
31
35
32
36
# # 2. Browser & Node SDKs
33
37
- name : npm
Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ export type {
33
33
ReplaySpanFrameEvent ,
34
34
} from '@sentry/replay' ;
35
35
36
+ export { Feedback } from '@sentry-internal/feedback' ;
37
+
36
38
export {
37
39
BrowserTracing ,
38
40
defaultRequestInstrumentationOptions ,
Original file line number Diff line number Diff line change 42
42
"build:types:watch" : " tsc -p tsconfig.types.json --watch" ,
43
43
"build:tarball" : " ts-node ../../scripts/prepack.ts --bundles && npm pack ./build/npm" ,
44
44
"circularDepCheck" : " madge --circular src/index.ts" ,
45
- "clean" : " rimraf build sentry-replay -*.tgz" ,
45
+ "clean" : " rimraf build sentry-feedback -*.tgz" ,
46
46
"fix" : " eslint . --format stylish --fix" ,
47
47
"lint" : " eslint . --format stylish" ,
48
48
"test" : " jest" ,
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ export class Feedback implements Integration {
155
155
}
156
156
157
157
/**
158
- * Setup and initialize replay container
158
+ * Setup and initialize feedback container
159
159
*/
160
160
public setupOnce ( ) : void {
161
161
if ( ! isBrowser ( ) ) {
You can’t perform that action at this time.
0 commit comments