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 11b336a commit e5e180fCopy full SHA for e5e180f
packages/sveltekit/package.json
@@ -13,6 +13,13 @@
13
"module": "build/esm/index.server.js",
14
"browser": "build/esm/index.client.js",
15
"types": "build/types/index.types.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "browser": "./build/esm/index.client.js",
19
+ "node": "./build/esm/index.server.js",
20
+ "default": "./build/cjs/index.server.js"
21
+ }
22
+ },
23
"publishConfig": {
24
"access": "public"
25
},
packages/sveltekit/src/client/index.ts
@@ -1,3 +1,7 @@
1
export * from '@sentry/svelte';
2
3
export { init } from './sdk';
4
+export { wrapHandleError } from './handleError';
5
+
6
+// Just here so that eslint is happy until we export more stuff here
7
+export const PLACEHOLDER_CLIENT = 'PLACEHOLDER';
0 commit comments