Skip to content

Commit

Permalink
fix: remove non-existent .cjs entrypoints (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Aug 3, 2022
1 parent df7d0e0 commit ecf71f4
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,13 @@
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.mjs"
},
".": "./dist/index.mjs",
"./module": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./formats": {
"import": "./dist/formats.mjs",
"require": "./dist/formats.cjs"
},
"./generate": {
"import": "./dist/generate.mjs",
"require": "./dist/generate.cjs"
}
"./formats": "./dist/formats.mjs",
"./generate": "./dist/generate.mjs"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
Expand Down

0 comments on commit ecf71f4

Please sign in to comment.