Skip to content

Commit

Permalink
fix: make default prop the last in exports (jeremydaly#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
antstanley committed Oct 22, 2023
1 parent e25b135 commit aaa831a
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 @@ -7,12 +7,12 @@
"exports": {
".": {
"import": {
"default": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"default": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts"
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
Expand Down

0 comments on commit aaa831a

Please sign in to comment.