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 = [
1111 'default' ,
1212 // Probably generated by transpilation, no need to require it
1313 '__esModule' ,
14- // this function was deprecates almost immediately after it was introduced
14+ // this function was deprecated almost immediately after it was introduced
1515 // due to a name change (startSpan). No need to re-export it IMHO.
1616 'startActiveSpan' ,
1717 // this was never meant for external use (and documented as such)
@@ -60,18 +60,7 @@ const DEPENDENTS: Dependent[] = [
6060 {
6161 package : '@sentry/serverless' ,
6262 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' ] ,
7564 } ,
7665 {
7766 package : '@sentry/sveltekit' ,
Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ export {
3939 getIsolationScope ,
4040 getHubFromCarrier ,
4141 // eslint-disable-next-line deprecation/deprecation
42+ spanStatusfromHttpCode ,
43+ getSpanStatusFromHttpCode ,
44+ // eslint-disable-next-line deprecation/deprecation
4245 makeMain ,
4346 setCurrentClient ,
4447 setContext ,
@@ -79,4 +82,15 @@ export {
7982 startSpanManual ,
8083 continueTrace ,
8184 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 ,
8296} from '@sentry/node' ;
You can’t perform that action at this time.
0 commit comments