File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts
packages/sveltekit/src/server Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ const NODE_EXPORTS_IGNORE = [
22
22
'DebugSession' ,
23
23
'AnrIntegrationOptions' ,
24
24
'LocalVariablesIntegrationOptions' ,
25
- // deprecated
26
- 'spanStatusfromHttpCode' ,
27
25
] ;
28
26
29
27
type Dependent = {
@@ -70,11 +68,6 @@ const DEPENDENTS: Dependent[] = [
70
68
{
71
69
package : '@sentry/sveltekit' ,
72
70
exports : Object . keys ( SentrySvelteKit ) ,
73
- ignoreExports : [
74
- // Deprecated, no need to add this now to sveltekit
75
- 'enableAnrDetection' ,
76
- 'getModuleFromFilename' ,
77
- ] ,
78
71
} ,
79
72
] ;
80
73
Original file line number Diff line number Diff line change @@ -79,6 +79,8 @@ export {
79
79
continueTrace ,
80
80
cron ,
81
81
parameterize ,
82
+ // eslint-disable-next-line deprecation/deprecation
83
+ getModuleFromFilename ,
82
84
createGetModuleFromFilename ,
83
85
functionToStringIntegration ,
84
86
hapiErrorPlugin ,
@@ -87,6 +89,8 @@ export {
87
89
requestDataIntegration ,
88
90
metrics ,
89
91
runWithAsyncContext ,
92
+ // eslint-disable-next-line deprecation/deprecation
93
+ enableAnrDetection ,
90
94
} from '@sentry/node' ;
91
95
92
96
// We can still leave this for the carrier init and type exports
You can’t perform that action at this time.
0 commit comments