Skip to content

Commit

Permalink
fix esm path on package.json (#143)
Browse files Browse the repository at this point in the history
The module path defined on package.json does not match with the exports and the artifacts. This change's not tested but current release of `a68ac06` is emitting an error on some builds.
  • Loading branch information
wanseob authored Mar 9, 2024
1 parent a68ac06 commit b36a4d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "3.1.0",
"description": "An EventEmitter that isolates the emitter from errors in handlers",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
Expand Down

0 comments on commit b36a4d0

Please sign in to comment.