Skip to content

Commit

Permalink
fix: update references in exports to use .mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblack committed Jun 14, 2024
1 parent 8873e86 commit ac465d2
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 @@ -10,15 +10,15 @@
"import": "./dist/esm/index.d.ts",
"require": "./dist/cjs/index.d.ts"
},
"import": "./dist/esm/index.js",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
},
"./utils": {
"types": {
"import": "./dist/esm/utils/index.d.ts",
"require": "./dist/esm/utils/index.d.ts"
},
"import": "./dist/esm/utils/index.js",
"import": "./dist/esm/utils/index.mjs",
"require": "./dist/cjs/utils/index.js"
}
},
Expand Down

0 comments on commit ac465d2

Please sign in to comment.