Skip to content

Commit 524a42a

Browse files
committed
add index files; run biome
1 parent 1a10a43 commit 524a42a

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

packages/nuxt/src/client/sdk.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { applySdkMetadata } from '@sentry/core';
2-
import {init as initVue } from '@sentry/vue';
2+
import type { Options } from '@sentry/types';
3+
import { init as initVue } from '@sentry/vue';
34
import type { SentryVueOptions } from '../common/types';
4-
import type {Options } from '@sentry/types';
55

66
/**
77
* Initializes the client-side of the Nuxt SDK

packages/nuxt/src/common/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import type {init} from '@sentry/vue';
1+
import type { init } from '@sentry/vue';
22

33
export type SentryVueOptions = Parameters<typeof init>[0] & object;

packages/nuxt/src/index.server.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

packages/nuxt/src/index.types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

packages/nuxt/test/client/sdk.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { SDK_VERSION } from '@sentry/vue';
22
import * as SentryVue from '@sentry/vue';
3-
import { vi, describe, beforeEach } from 'vitest';
3+
import { beforeEach, describe, vi } from 'vitest';
44
import { init } from '../../src/client';
55

66
const vueInit = vi.spyOn(SentryVue, 'init');

0 commit comments

Comments
 (0)