Skip to content

Commit

Permalink
Merge pull request #407 from trivir/fix-default-export-order
Browse files Browse the repository at this point in the history
Make default export last to fix Typescript compile error
  • Loading branch information
vscheuber authored May 14, 2024
2 parents 2507d19 + 7a48301 commit c7b76cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"exports": {
".": {
"require": "./cjs/index.js",
"default": "./esm/index.js",
"import": "./esm/index.js"
"import": "./esm/index.js",
"default": "./esm/index.js"
}
},
"scripts": {
Expand Down

0 comments on commit c7b76cf

Please sign in to comment.