Skip to content

Commit

Permalink
fix: re-arrange package exports so that types is exposed (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
andogq authored Feb 11, 2025
2 parents 9ac3506 + eb8bdae commit 30de5ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/large-swans-peel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"windpipe": patch
---

re-arrange exports in package.json
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
Expand Down

0 comments on commit 30de5ed

Please sign in to comment.