Skip to content

Commit

Permalink
fix: fix ordering in the exports field
Browse files Browse the repository at this point in the history
  • Loading branch information
susisu committed Sep 23, 2024
1 parent 60aec40 commit efe7825
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"exports": {
".": {
"import": {
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"default": "./lib/index.cjs",
"types": "./lib/index.d.cts"
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
}
},
Expand Down

0 comments on commit efe7825

Please sign in to comment.