Skip to content

Commit 4cd28fa

Browse files
committed
move node tracing integrations into node folder
1 parent a91fb10 commit 4cd28fa

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { Express } from './express';
2-
export { Postgres } from './postgres';
3-
export { Mysql } from './mysql';
4-
export { Mongo } from './mongo';
1+
export { Express } from './node/express';
2+
export { Postgres } from './node/postgres';
3+
export { Mysql } from './node/mysql';
4+
export { Mongo } from './node/mongo';

packages/tracing/test/integrations/mongo.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable @typescript-eslint/unbound-method */
22
import { Hub, Scope } from '@sentry/hub';
33

4-
import { Mongo } from '../../src/integrations/mongo';
4+
import { Mongo } from '../../src/integrations/node/mongo';
55
import { Span } from '../../src/span';
66

77
class Collection {

packages/tracing/test/integrations/postgres.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable @typescript-eslint/unbound-method */
22
import { Hub, Scope } from '@sentry/hub';
33

4-
import { Postgres } from '../../src/integrations/postgres';
4+
import { Postgres } from '../../src/integrations/node/postgres';
55
import { Span } from '../../src/span';
66

77
class PgClient {

0 commit comments

Comments
 (0)