File tree Expand file tree Collapse file tree 2 files changed +14
-2
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 +14
-2
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,11 @@ const DEPENDENTS: Dependent[] = [
70
70
{
71
71
package : '@sentry/sveltekit' ,
72
72
exports : Object . keys ( SentrySvelteKit ) ,
73
- // TODO: Fix exports in sveltekit
74
- skip : true ,
73
+ ignoreExports : [
74
+ // Deprecated, no need to add this now to sveltekit
75
+ 'enableAnrDetection' ,
76
+ 'getModuleFromFilename' ,
77
+ ] ,
75
78
} ,
76
79
] ;
77
80
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ export {
30
30
getGlobalScope ,
31
31
getIsolationScope ,
32
32
Hub ,
33
+ NodeClient ,
33
34
// eslint-disable-next-line deprecation/deprecation
34
35
makeMain ,
35
36
setCurrentClient ,
@@ -78,6 +79,14 @@ export {
78
79
continueTrace ,
79
80
cron ,
80
81
parameterize ,
82
+ createGetModuleFromFilename ,
83
+ functionToStringIntegration ,
84
+ hapiErrorPlugin ,
85
+ inboundFiltersIntegration ,
86
+ linkedErrorsIntegration ,
87
+ requestDataIntegration ,
88
+ metrics ,
89
+ runWithAsyncContext ,
81
90
} from '@sentry/node' ;
82
91
83
92
// We can still leave this for the carrier init and type exports
You can’t perform that action at this time.
0 commit comments