We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd2363c commit b83089eCopy full SHA for b83089e
dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts/consistentExports.ts
@@ -1,5 +1,4 @@
1
import * as SentryAstro from '@sentry/astro';
2
-import * as SentryBun from '@sentry/bun';
3
import * as SentryGoogleCloud from '@sentry/google-cloud';
4
import * as SentryNextJs from '@sentry/nextjs';
5
import * as SentryNode from '@sentry/node';
@@ -9,6 +8,8 @@ import * as SentrySvelteKit from '@sentry/sveltekit';
9
8
10
// SentryAWS is CJS only
11
const SentryAWS = require('@sentry/aws-serverless');
+// Using CJS export for Bun SDK
12
+const SentryBun = require('@sentry/bun');
13
14
/* List of exports that are safe to ignore / we don't require in any depending package */
15
const NODE_EXPERIMENTAL_EXPORTS_IGNORE = [
0 commit comments