Skip to content

Commit 15551ec

Browse files
committed
fix build
1 parent c29586b commit 15551ec

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

packages/shared/src/react/hooks/__tests__/createBillingPaginatedHook.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import type { ClerkResource } from '@clerk/shared/types';
21
import { renderHook, waitFor } from '@testing-library/react';
32
import { beforeEach, describe, expect, it, vi } from 'vitest';
43

4+
import type { ClerkResource } from '../../../types';
55
import { createBillingPaginatedHook } from '../createBillingPaginatedHook';
66
import { wrapper } from './wrapper';
77

packages/shared/tsdown.config.mts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,17 @@ export default defineConfig(({ watch }) => {
2929
unbundle: false,
3030
outDir: './dist/types',
3131
},
32-
// {
33-
// ...common,
34-
// entry: [
35-
// // all files except types
36-
// './src/*.{ts,tsx}',
37-
// './src/*/index.{ts,tsx}',
38-
// // '!./src/types/*.{ts,tsx}',
39-
// '!./src/**/*.{test,spec}.{ts,tsx}',
40-
// ],
41-
// outDir: './dist/runtime',
42-
// unbundle: false,
43-
// },
32+
{
33+
...common,
34+
entry: [
35+
// all files except types
36+
'./src/*.{ts,tsx}',
37+
'./src/**/index.{ts,tsx}',
38+
// '!./src/types/*.{ts,tsx}',
39+
'!./src/**/*.{test,spec}.{ts,tsx}',
40+
],
41+
outDir: './dist/runtime',
42+
unbundle: false,
43+
},
4444
];
4545
});

0 commit comments

Comments
 (0)