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 14604aa commit 815832cCopy full SHA for 815832c
packages/bun/package.json
@@ -15,7 +15,7 @@
15
"types",
16
"types-ts3.8"
17
],
18
- "main": "build/esm/index.js",
+ "main": "build/cjs/index.js",
19
"module": "build/esm/index.js",
20
"types": "build/types/index.d.ts",
21
"exports": {
packages/bun/rollup.npm.config.mjs
@@ -1,6 +1,3 @@
1
import { makeBaseNPMConfig, makeNPMConfigVariants } from '@sentry-internal/rollup-utils';
2
3
-const config = makeNPMConfigVariants(makeBaseNPMConfig());
4
-
5
-// remove cjs from config array config[0].output.format == cjs
6
-export default [config[1]];
+export default makeNPMConfigVariants(makeBaseNPMConfig());
0 commit comments