Skip to content

Commit 5317a75

Browse files
authored
feat: Expose Integrations to use in other sdks (#1393)
1 parent 4fec973 commit 5317a75

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

packages/browser/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ export { Hub, Scope } from '@sentry/hub';
2424
export { BrowserBackend, BrowserOptions } from './backend';
2525
export { BrowserClient } from './client';
2626
export { init, getCurrentClient } from './sdk';
27+
28+
import * as Integrations from './integrations';
29+
export { Integrations };

packages/node/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ export { Hub } from './hub';
2525
export { NodeBackend, NodeOptions } from './backend';
2626
export { NodeClient } from './client';
2727
export { init, getCurrentClient } from './sdk';
28+
29+
import * as Integrations from './integrations';
30+
export { Integrations };

0 commit comments

Comments
 (0)