Skip to content

Commit

Permalink
Move default entries to last position in exports
Browse files Browse the repository at this point in the history
  • Loading branch information
joustava committed Mar 8, 2024
1 parent ee21412 commit 8d14868
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 @@ -21,12 +21,12 @@
"types": "dist/icu-message-formatter.d.ts",
"exports": {
"import": {
"default": "./dist/icu-message-formatter.js",
"types": "./dist/icu-message-formatter.d.ts"
"types": "./dist/icu-message-formatter.d.ts",
"default": "./dist/icu-message-formatter.js"
},
"require": {
"default": "./dist/icu-message-formatter.cjs",
"types": "./dist/icu-message-formatter.d.cts"
"types": "./dist/icu-message-formatter.d.cts",
"default": "./dist/icu-message-formatter.cjs"
}
},
"files": [
Expand Down

0 comments on commit 8d14868

Please sign in to comment.