Skip to content

Commit d6808f3

Browse files
authored
ref: Expose parsers function (#1733)
1 parent 137d7e0 commit d6808f3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44

55
- [core] feat: Filter internal Sentry errors from transports/sdk
6+
- [node] ref: Expose Parsers functions
67
- [core] ref: Better fingerprint handling
78

89
## 4.3.0

packages/node/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,12 @@ export { SDK_NAME, SDK_VERSION } from './version';
3535
import { Integrations as CoreIntegrations } from '@sentry/core';
3636
import * as Handlers from './handlers';
3737
import * as NodeIntegrations from './integrations';
38+
import * as Parsers from './parsers';
3839
import * as Transports from './transports';
3940

4041
const INTEGRATIONS = {
4142
...CoreIntegrations,
4243
...NodeIntegrations,
4344
};
4445

45-
export { INTEGRATIONS as Integrations, Transports, Handlers };
46+
export { INTEGRATIONS as Integrations, Transports, Parsers, Handlers };

0 commit comments

Comments
 (0)