File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -48,8 +48,11 @@ const DEPENDENTS: Dependent[] = [
48
48
{
49
49
package : '@sentry/remix' ,
50
50
exports : Object . keys ( SentryRemix ) ,
51
- // TODO: Fix exports in remix
52
- skip : true ,
51
+ ignoreExports : [
52
+ // Deprecated, no need to add this now to remix
53
+ 'getModuleFromFilename' ,
54
+ 'enableAnrDetection' ,
55
+ ] ,
53
56
} ,
54
57
{
55
58
package : '@sentry/serverless' ,
@@ -58,9 +61,9 @@ const DEPENDENTS: Dependent[] = [
58
61
// Deprecated, no need to add this now to serverless
59
62
'extractTraceparentData' ,
60
63
'getModuleFromFilename' ,
64
+ 'enableAnrDetection' ,
61
65
// TODO: Should these be exported from serverless?
62
66
'cron' ,
63
- 'enableAnrDetection' ,
64
67
'runWithAsyncContext' ,
65
68
'hapiErrorPlugin' ,
66
69
] ,
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ export {
39
39
// eslint-disable-next-line deprecation/deprecation
40
40
makeMain ,
41
41
setCurrentClient ,
42
+ NodeClient ,
42
43
Scope ,
43
44
// eslint-disable-next-line deprecation/deprecation
44
45
startTransaction ,
@@ -83,6 +84,14 @@ export {
83
84
isInitialized ,
84
85
cron ,
85
86
parameterize ,
87
+ metrics ,
88
+ createGetModuleFromFilename ,
89
+ functionToStringIntegration ,
90
+ hapiErrorPlugin ,
91
+ inboundFiltersIntegration ,
92
+ linkedErrorsIntegration ,
93
+ requestDataIntegration ,
94
+ runWithAsyncContext ,
86
95
} from '@sentry/node' ;
87
96
88
97
// Keeping the `*` exports for backwards compatibility and types
You can’t perform that action at this time.
0 commit comments