Skip to content

Commit eee9b6f

Browse files
committed
Move supabase into its own internal package.
1 parent 7991b55 commit eee9b6f

File tree

7 files changed

+5
-438
lines changed

7 files changed

+5
-438
lines changed

.craft.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ targets:
3232
- name: npm
3333
id: '@sentry-internal/replay-canvas'
3434
includeNames: /^sentry-internal-replay-canvas-\d.*\.tgz$/
35-
3635
## 2. Browser & Node SDKs
3736
- name: npm
3837
id: '@sentry/browser'

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
"packages/replay-worker",
8080
"packages/solid",
8181
"packages/solidstart",
82+
"packages/supabase",
8283
"packages/svelte",
8384
"packages/sveltekit",
8485
"packages/tanstackstart",

packages/browser/src/exports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ export {
6060
spanToJSON,
6161
spanToTraceHeader,
6262
spanToBaggageHeader,
63-
updateSpanName,
6463
supabaseIntegration,
64+
updateSpanName,
6565
} from '@sentry/core';
6666

6767
export {

packages/browser/src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,11 @@ export {
5858
setHttpStatus,
5959
makeMultiplexedTransport,
6060
moduleMetadataIntegration,
61-
zodErrorsIntegration,
6261
supabaseIntegration,
62+
zodErrorsIntegration,
6363
thirdPartyErrorFilterIntegration,
6464
} from '@sentry/core';
65+
6566
export type { Span } from '@sentry/core';
6667
export { makeBrowserOfflineTransport } from './transports/offline';
6768
export { browserProfilingIntegration } from './profiling/integration';

packages/core/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ export { dedupeIntegration } from './integrations/dedupe';
107107
export { extraErrorDataIntegration } from './integrations/extraerrordata';
108108
export { rewriteFramesIntegration } from './integrations/rewriteframes';
109109
export { zodErrorsIntegration } from './integrations/zoderrors';
110-
export { supabaseIntegration } from './integrations/supabase';
111110
export { thirdPartyErrorFilterIntegration } from './integrations/third-party-errors-filter';
112111
export { profiler } from './profiling';
113112
export { instrumentFetchRequest } from './fetch';

0 commit comments

Comments
 (0)