Skip to content

Commit 9db7a5c

Browse files
committed
yarn fix
1 parent 361a88f commit 9db7a5c

File tree

11 files changed

+5
-16
lines changed

11 files changed

+5
-16
lines changed

packages/nextjs/src/common/wrapAppGetInitialPropsWithSentry.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import {
22
addTracingExtensions,
33
getActiveSpan,
4-
getClient,
54
getDynamicSamplingContextFromSpan,
65
getRootSpan,
76
spanToTraceHeader,

packages/nextjs/src/common/wrapGetStaticPropsWithSentry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { addTracingExtensions, getClient } from '@sentry/core';
1+
import { addTracingExtensions } from '@sentry/core';
22
import type { GetStaticProps } from 'next';
33

44
import { isBuild } from './utils/isBuild';

packages/node/test/index.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import {
2626
import { setNodeAsyncContextStrategy } from '../src/async';
2727
import { ContextLines } from '../src/integrations';
2828
import { defaultStackParser, getDefaultIntegrations } from '../src/sdk';
29-
import type { NodeClientOptions } from '../src/types';
3029
import { getDefaultNodeClientOptions } from './helper/node-client-options';
3130

3231
jest.mock('@sentry/core', () => {

packages/node/test/integrations/http.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Transaction } from '@sentry/core';
77
import { getCurrentScope, setUser, spanToJSON, startInactiveSpan } from '@sentry/core';
88
import { addTracingExtensions } from '@sentry/core';
99
import type { TransactionContext } from '@sentry/types';
10-
import { TRACEPARENT_REGEXP, logger } from '@sentry/utils';
10+
import { TRACEPARENT_REGEXP } from '@sentry/utils';
1111
import * as nock from 'nock';
1212
import { HttpsProxyAgent } from '../../src/proxy';
1313

packages/tracing-internal/src/node/integrations/express.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable max-lines */
22
import { SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, spanToJSON } from '@sentry/core';
3-
import type { Hub, Integration, PolymorphicRequest, Transaction } from '@sentry/types';
3+
import type { Integration, PolymorphicRequest, Transaction } from '@sentry/types';
44
import {
55
GLOBAL_OBJ,
66
extractPathForTransaction,

packages/tracing-internal/src/node/integrations/prisma.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, getCurrentHub, startSpan } from '@sentry/core';
1+
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, startSpan } from '@sentry/core';
22
import type { Integration } from '@sentry/types';
33
import { addNonEnumerableProperty, logger } from '@sentry/utils';
44

packages/tracing/test/integrations/apollo.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
/* eslint-disable @typescript-eslint/unbound-method */
33
import { Hub, Scope, SentrySpan } from '@sentry/core';
44
import type { Span } from '@sentry/types';
5-
import { logger } from '@sentry/utils';
65

76
import { Integrations } from '../../src';
8-
import { getTestClient } from '../testutils';
97

108
type ApolloResolverGroup = {
119
[key: string]: () => any;

packages/tracing/test/integrations/graphql.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
/* eslint-disable @typescript-eslint/unbound-method */
33
import { Hub, Scope, SentrySpan } from '@sentry/core';
44
import type { Span } from '@sentry/types';
5-
import { logger } from '@sentry/utils';
65

76
import { Integrations } from '../../src';
8-
import { getTestClient } from '../testutils';
97

108
const GQLExecute = {
119
execute() {

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/* eslint-disable @typescript-eslint/unbound-method */
33
import { Hub, Scope, SentrySpan } from '@sentry/core';
44
import type { Span } from '@sentry/types';
5-
import { logger } from '@sentry/utils';
65

76
import { Integrations } from '../../../src';
87
import { getTestClient } from '../../testutils';

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
/* eslint-disable @typescript-eslint/unbound-method */
33
import { Hub, Scope, SentrySpan } from '@sentry/core';
44
import type { Span } from '@sentry/types';
5-
import { loadModule, logger } from '@sentry/utils';
5+
import { loadModule } from '@sentry/utils';
66
import pg from 'pg';
77

88
import { Integrations } from '../../../src';
9-
import { getTestClient } from '../../testutils';
109

1110
class PgClient {
1211
// https://node-postgres.com/api/client#clientquery

packages/tracing/test/integrations/node/prisma.test.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
/* eslint-disable deprecation/deprecation */
2-
import * as sentryCore from '@sentry/core';
3-
import { Hub } from '@sentry/core';
42

53
import { Integrations } from '../../../src';
6-
import { getTestClient } from '../../testutils';
74

85
const mockStartSpan = jest.fn();
96

0 commit comments

Comments
 (0)