Skip to content

Commit

Permalink
fix(package.json): fixed wrong exports file extensions
Browse files Browse the repository at this point in the history
Fixed a regression introduced in 1.5.0 where the require and import file
extensions were switched up
  • Loading branch information
JoaoTMDias committed Mar 15, 2024
1 parent 3bf3233 commit a2838c7
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 @@
"module": "./dist/index.es.mjs",
"exports": {
".": {
"import": "./dist/index.es.cjs",
"require": "./dist/index.cjs.mjs",
"import": "./dist/index.es.mjs",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
}
},
Expand Down

0 comments on commit a2838c7

Please sign in to comment.