Skip to content

Commit

Permalink
hotfix: ignoring file to build in prod
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusSanchez committed Feb 4, 2024
1 parent c246eb1 commit eaf494f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import { defineConfig } from 'tsup'

export default defineConfig({
entry: ['src', '!src/**/*.spec.*'],
entry: [
'src',
'!src/**/*.spec.*',
'!src/utils/create-and-authenticate-user.ts',
],
})

0 comments on commit eaf494f

Please sign in to comment.