Skip to content

Commit

Permalink
fix(release): revert export file
Browse files Browse the repository at this point in the history
The ./components directory is generated at build time but was renamed in a previous commit while attempting to fix a type error. This commit restores the proper file name and adds a comment in the code to prevent further confusion.
  • Loading branch information
adamdehaven committed Feb 4, 2025
1 parent 79fac52 commit b5fa160
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
// Export all components
export * from './component-list'
// @ts-ignore - The `./components` directory is generated at build time.
export * from './components'

0 comments on commit b5fa160

Please sign in to comment.