Skip to content

Commit

Permalink
build: fix typo in exports
Browse files Browse the repository at this point in the history
resolves #232
  • Loading branch information
pi0 committed Feb 21, 2025
1 parent 67b3206 commit 82f560c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@
".": {
"import": {
"types": "./dist/index.d.mts",
"default:": "./dist/index.mjs"
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default:": "./dist/index.cjs"
"default": "./dist/index.cjs"
}
},
"./update": {
"import": {
"types": "./dist/update.d.mts",
"default:": "./dist/update.mjs"
"default": "./dist/update.mjs"
},
"require": {
"types": "./dist/update.d.cts",
"default:": "./dist/update.cjs"
"default": "./dist/update.cjs"
}
}
},
Expand Down

0 comments on commit 82f560c

Please sign in to comment.