Skip to content

Commit 68aad37

Browse files
committed
yarn fix
1 parent 9037e0b commit 68aad37

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

packages/serverless/src/awslambda.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function init(options: Sentry.NodeOptions = {}): void {
7979
version: Sentry.SDK_VERSION,
8080
};
8181

82-
options.dsn = extensionRelayDSN(options.dsn)
82+
options.dsn = extensionRelayDSN(options.dsn);
8383

8484
Sentry.init(options);
8585
Sentry.addGlobalEventProcessor(serverlessEventProcessor);

packages/utils/src/dsn.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ export function makeDsn(from: DsnLike): DsnComponents {
108108
return components;
109109
}
110110

111-
112111
/**
113112
* Changes a Dsn to point to the `relay` server running in the Lambda Extension.
114113
*

packages/utils/src/normalize.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ type ObjOrArray<T> = { [key: string]: T };
3131
* object in the normallized output..
3232
* @returns A normalized version of the object, or `"**non-serializable**"` if any errors are thrown during normalization.
3333
*/
34+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
3435
export function normalize(input: unknown, depth: number = +Infinity, maxProperties: number = +Infinity): any {
3536
try {
3637
// since we're at the outermost level, we don't provide a key
@@ -42,6 +43,7 @@ export function normalize(input: unknown, depth: number = +Infinity, maxProperti
4243

4344
/** JSDoc */
4445
export function normalizeToSize<T>(
46+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
4547
object: { [key: string]: any },
4648
// Default Node.js REPL depth
4749
depth: number = 3,
@@ -241,6 +243,7 @@ function utf8Length(value: string): number {
241243
}
242244

243245
/** Calculates bytes size of input object */
246+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
244247
function jsonSize(value: any): number {
245248
return utf8Length(JSON.stringify(value));
246249
}

0 commit comments

Comments
 (0)