Skip to content

Commit

Permalink
fix(exports): Define 'default' exports as last for legacy compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Sep 16, 2024
1 parent 13ed343 commit a9518c8
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 @@ -4,9 +4,9 @@
"description": "Email parser for browser environments",
"main": "./src/postal-mime.js",
"exports": {
"default": "./src/postal-mime.js",
"import": "./src/postal-mime.js",
"types": "./postal-mime.d.ts"
"types": "./postal-mime.d.ts",
"default": "./src/postal-mime.js"
},
"type": "module",
"types": "postal-mime.d.ts",
Expand Down

0 comments on commit a9518c8

Please sign in to comment.