Skip to content

Commit

Permalink
fix: Reorder module exports in package.json (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Apr 16, 2023
1 parent 453de51 commit cd84ddd
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 @@ -22,12 +22,12 @@
"exports": {
".": {
"import": {
"default": "./index.js",
"types": "./index.d.ts"
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"default": "./umd/index.js",
"types": "./umd/index.d.ts"
"types": "./umd/index.d.ts",
"default": "./umd/index.js"
}
}
},
Expand Down

0 comments on commit cd84ddd

Please sign in to comment.