Skip to content

Commit 6d8fabb

Browse files
committed
fix: remix exports
1 parent 4066ff9 commit 6d8fabb

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

packages/remix/src/server/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

130132
export { init, getRemixDefaultIntegrations } from './sdk';
131133
export { captureRemixServerException } from './errors';

packages/solidstart/src/server/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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
133135
export type * from '@sentry/node';
134136

135137
export { withSentryErrorBoundary } from '@sentry/solid';

packages/sveltekit/src/server/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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
135137
export type * from '@sentry/node';
136138

137139
// -------------------------

0 commit comments

Comments
 (0)