File tree Expand file tree Collapse file tree 2 files changed +16
-13
lines changed
dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts Expand file tree Collapse file tree 2 files changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const NODE_EXPORTS_IGNORE = [
11
11
'default' ,
12
12
// Probably generated by transpilation, no need to require it
13
13
'__esModule' ,
14
- // this function was deprecates almost immediately after it was introduced
14
+ // this function was deprecated almost immediately after it was introduced
15
15
// due to a name change (startSpan). No need to re-export it IMHO.
16
16
'startActiveSpan' ,
17
17
// this was never meant for external use (and documented as such)
@@ -60,18 +60,7 @@ const DEPENDENTS: Dependent[] = [
60
60
{
61
61
package : '@sentry/serverless' ,
62
62
exports : Object . keys ( SentryServerless ) ,
63
- ignoreExports : [
64
- // Deprecated, no need to add this now to serverless
65
- 'extractTraceparentData' ,
66
- 'getModuleFromFilename' ,
67
- 'enableAnrDetection' ,
68
- // TODO: Should these be exported from serverless?
69
- 'cron' ,
70
- 'runWithAsyncContext' ,
71
- 'hapiErrorPlugin' ,
72
- ] ,
73
- // TODO: Fix exports in serverless
74
- skip : true ,
63
+ ignoreExports : [ 'cron' , 'hapiErrorPlugin' , 'enableAnrDetection' ] ,
75
64
} ,
76
65
{
77
66
package : '@sentry/sveltekit' ,
Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ export {
39
39
getIsolationScope ,
40
40
getHubFromCarrier ,
41
41
// eslint-disable-next-line deprecation/deprecation
42
+ spanStatusfromHttpCode ,
43
+ getSpanStatusFromHttpCode ,
44
+ // eslint-disable-next-line deprecation/deprecation
42
45
makeMain ,
43
46
setCurrentClient ,
44
47
setContext ,
@@ -79,4 +82,15 @@ export {
79
82
startSpanManual ,
80
83
continueTrace ,
81
84
parameterize ,
85
+ requestDataIntegration ,
86
+ linkedErrorsIntegration ,
87
+ inboundFiltersIntegration ,
88
+ functionToStringIntegration ,
89
+ // eslint-disable-next-line deprecation/deprecation
90
+ getModuleFromFilename ,
91
+ createGetModuleFromFilename ,
92
+ metrics ,
93
+ // eslint-disable-next-line deprecation/deprecation
94
+ extractTraceparentData ,
95
+ runWithAsyncContext ,
82
96
} from '@sentry/node' ;
You can’t perform that action at this time.
0 commit comments