Skip to content

Commit 2716a2c

Browse files
committed
fix lint, circular deps, size limit
1 parent 1dcc1b6 commit 2716a2c

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

packages/core/src/envelope.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import type { Event } from './types-hoist/event';
2020
import type { SdkInfo } from './types-hoist/sdkinfo';
2121
import type { SdkMetadata } from './types-hoist/sdkmetadata';
2222
import type { Session, SessionAggregates } from './types-hoist/session';
23-
import { SpanV2JSON } from './types-hoist/span';
23+
import type { SpanV2JSON } from './types-hoist/span';
2424
import { isV2BeforeSendSpanCallback } from './utils/beforeSendSpan';
2525
import { dsnToString } from './utils/dsn';
2626
import {

packages/core/src/utils/attributes.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import { normalize } from '..';
21
import type { SerializedAttribute } from '../types-hoist/attributes';
3-
import { Primitive } from '../types-hoist/misc';
4-
import type { SpanAttributes, SpanAttributeValue } from '../types-hoist/span';
5-
import { isPrimitive } from './is';
2+
import type { SpanAttributes } from '../types-hoist/span';
3+
import { normalize } from '../utils/normalize';
64

75
/**
86
* Converts an attribute value to a serialized attribute value object, containing

0 commit comments

Comments
 (0)