Skip to content

Commit 4547548

Browse files
committed
run after
1 parent cfd2134 commit 4547548

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

packages/node/src/sdk/index.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,16 @@ export function getDefaultIntegrationsWithoutPerformance(): Integration[] {
6464
// Global Handlers
6565
onUncaughtExceptionIntegration(),
6666
onUnhandledRejectionIntegration(),
67-
rewriteFramesIntegration({
68-
root: process.cwd(),
69-
}),
7067
// Event Info
7168
contextLinesIntegration(),
7269
localVariablesIntegration(),
7370
nodeContextIntegration(),
7471
childProcessIntegration(),
7572
processSessionIntegration(),
73+
// This has to run after the other integrations, because it rewrites the frames
74+
rewriteFramesIntegration({
75+
root: process.cwd(),
76+
}),
7677
...getCjsOnlyIntegrations(),
7778
];
7879
}

0 commit comments

Comments
 (0)