File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,9 @@ export {
125125} from '@sentry/node' ;
126126
127127// Keeping the `*` exports for backwards compatibility and types
128- export * from '@sentry/node' ;
128+ // FIXME: ROLLDOWN breaks here unless we export types and not the module
129+ // https://github.com/rolldown/rolldown/issues/6992
130+ export type * from '@sentry/node' ;
129131
130132export { init , getRemixDefaultIntegrations } from './sdk' ;
131133export { captureRemixServerException } from './errors' ;
Original file line number Diff line number Diff line change @@ -130,6 +130,8 @@ export {
130130} from '@sentry/node' ;
131131
132132// We can still leave this for the carrier init and type exports
133+ // FIXME: ROLLDOWN breaks here unless we export types and not the module
134+ // https://github.com/rolldown/rolldown/issues/6992
133135export type * from '@sentry/node' ;
134136
135137export { withSentryErrorBoundary } from '@sentry/solid' ;
Original file line number Diff line number Diff line change @@ -132,6 +132,8 @@ export {
132132} from '@sentry/node' ;
133133
134134// We can still leave this for the carrier init and type exports
135+ // FIXME: ROLLDOWN breaks here unless we export types and not the module
136+ // https://github.com/rolldown/rolldown/issues/6992
135137export type * from '@sentry/node' ;
136138
137139// -------------------------
You can’t perform that action at this time.
0 commit comments