File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts Expand file tree Collapse file tree 2 files changed +4
-8
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 = {
@@ -43,16 +41,10 @@ const DEPENDENTS: Dependent[] = [
43
41
// Next.js doesn't require explicit exports, so we can just merge top level and `default` exports:
44
42
// @ts -expect-error: `default` is not in the type definition but it's defined
45
43
exports : Object . keys ( { ...SentryNextJs , ...SentryNextJs . default } ) ,
46
- ignoreExports : [ 'withSentryConfig' ] ,
47
44
} ,
48
45
{
49
46
package : '@sentry/remix' ,
50
47
exports : Object . keys ( SentryRemix ) ,
51
- ignoreExports : [
52
- // Deprecated, no need to add this now to remix
53
- 'getModuleFromFilename' ,
54
- 'enableAnrDetection' ,
55
- ] ,
56
48
} ,
57
49
{
58
50
package : '@sentry/serverless' ,
Original file line number Diff line number Diff line change @@ -85,13 +85,17 @@ export {
85
85
cron ,
86
86
parameterize ,
87
87
metrics ,
88
+ // eslint-disable-next-line deprecation/deprecation
89
+ getModuleFromFilename ,
88
90
createGetModuleFromFilename ,
89
91
functionToStringIntegration ,
90
92
hapiErrorPlugin ,
91
93
inboundFiltersIntegration ,
92
94
linkedErrorsIntegration ,
93
95
requestDataIntegration ,
94
96
runWithAsyncContext ,
97
+ // eslint-disable-next-line deprecation/deprecation
98
+ enableAnrDetection ,
95
99
} from '@sentry/node' ;
96
100
97
101
// Keeping the `*` exports for backwards compatibility and types
You can’t perform that action at this time.
0 commit comments