Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
fix: currency exports
Browse files Browse the repository at this point in the history
  • Loading branch information
notrab committed Mar 10, 2024
1 parent 1e393ba commit 8314ea0
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,15 @@
"type": "module",
"exports": {
"./currency": {
"import": "./dist/currency.js",
"require": "./dist/currency.cjs",
"types": "./dist/currency.d.ts",
"default": "./dist/currency.js"
"import": {
"node": "./dist/currency.js",
"default": "./dist/currency.js"
},
"require": {
"node": "./dist/currency.cjs",
"default": "./dist/currency.cjs"
}
},
"./number": {
"import": "./dist/number.js",
Expand Down

0 comments on commit 8314ea0

Please sign in to comment.