Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ const DEPENDENTS: Dependent[] = [
ignoreExports: [
// Not needed for Astro
'setupFastifyErrorHandler',
// Todo(metrics): Add metrics exports for beta
'metrics',
],
},
{
Expand All @@ -56,8 +54,6 @@ const DEPENDENTS: Dependent[] = [
'childProcessIntegration',
'systemErrorIntegration',
'pinoIntegration',
// Todo(metrics): Add metrics exports for beta
'metrics',
],
},
{
Expand All @@ -79,8 +75,6 @@ const DEPENDENTS: Dependent[] = [
ignoreExports: [
// Not needed for Serverless
'setupFastifyErrorHandler',
// Todo(metrics): Add metrics exports for beta
'metrics',
],
},
{
Expand All @@ -90,8 +84,6 @@ const DEPENDENTS: Dependent[] = [
ignoreExports: [
// Not needed for Serverless
'setupFastifyErrorHandler',
// Todo(metrics): Add metrics exports for beta
'metrics',
],
},
{
Expand Down
1 change: 1 addition & 0 deletions packages/astro/src/index.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ export {
statsigIntegration,
unleashIntegration,
growthbookIntegration,
metrics,
} from '@sentry/node';

export { init } from './server/sdk';
Expand Down
1 change: 1 addition & 0 deletions packages/aws-serverless/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export {
statsigIntegration,
unleashIntegration,
growthbookIntegration,
metrics,
} from '@sentry/node';

export {
Expand Down
2 changes: 2 additions & 0 deletions packages/bun/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export type {
Thread,
User,
FeatureFlagsIntegration,
Metric,
} from '@sentry/core';

export {
Expand Down Expand Up @@ -164,6 +165,7 @@ export {
OpenFeatureIntegrationHook,
statsigIntegration,
unleashIntegration,
metrics,
} from '@sentry/node';

export {
Expand Down
1 change: 1 addition & 0 deletions packages/google-cloud-serverless/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export {
OpenFeatureIntegrationHook,
statsigIntegration,
unleashIntegration,
metrics,
} from '@sentry/node';

export {
Expand Down
1 change: 1 addition & 0 deletions packages/sveltekit/src/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ export {
createConsolaReporter,
createSentryWinstonTransport,
vercelAIIntegration,
metrics,
} from '@sentry/node';

// We can still leave this for the carrier init and type exports
Expand Down
Loading