Skip to content

Commit

Permalink
Fix package exports (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
moeriki authored Jun 29, 2022
1 parent 121f162 commit 4e106e3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@
"src/"
],
"exports": {
"import": "./dist/color.js",
"require": "./dist/color.cjs",
".": {
"import": "./dist/color.js",
"require": "./dist/color.cjs"
},
"./fn": "./src/index-fn.js"
},
"type": "module",
Expand Down

0 comments on commit 4e106e3

Please sign in to comment.