Skip to content

Commit

Permalink
fixing package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
alexreardon committed May 24, 2024
1 parent 2650c97 commit b25f8ab
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,8 @@
"sideEffects": false,
"type": "module",
"exports": {
"import": {
".": "./dist/esm/index.js"
},
"require": {
".": "./dist/cjs/index.cjs"
},
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs",
"types": "./dist/esm/index.d.ts"
},
"config": {
Expand All @@ -37,11 +33,11 @@
],
"size-limit": [
{
"path": "./dist/bind.js",
"path": "./dist/esm/bind.js",
"limit": "95B"
},
{
"path": "./dist/bind-all.js",
"path": "./dist/esm/bind-all.js",
"limit": "211B"
}
],
Expand Down

0 comments on commit b25f8ab

Please sign in to comment.