We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 624bba6 commit 49ccee4Copy full SHA for 49ccee4
packages/devtools/src/node/rolldown/events-manager.ts
@@ -64,8 +64,7 @@ export class RolldownEventsManager {
64
const _start = start as HookTransformCallStart
65
const _end = event as HookTransformCallEnd
66
const no_changes = _start.content === _end.content
67
- // TODO: remove module id check when rolldown fixes the unique call id
68
- if ((no_changes && info.duration < DURATION_THRESHOLD) || _start.module_id !== _end.module_id) {
+ if (no_changes && info.duration < DURATION_THRESHOLD) {
69
return
70
}
71
0 commit comments