Skip to content

Commit

Permalink
fix(exports): add back require and browser exports
Browse files Browse the repository at this point in the history
Looks like these were unintentionally removed?
  • Loading branch information
dtfiedler authored and ppedziwiatr committed May 7, 2024
1 parent 8da5221 commit 7adb81f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@
},
"./mjs": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js",
"browser": "./bundles/web.bundle.min.js",
"types": "./lib/types/index.d.ts"
},
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js",
"browser": "./bundles/web.bundle.min.js",
"types": "./lib/types/index.d.ts"
}
},
Expand Down

0 comments on commit 7adb81f

Please sign in to comment.