Skip to content

Commit

Permalink
fix: update exports in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielelpidio committed Dec 22, 2023
1 parent 8a86fb9 commit ee1e6f5
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
"version": "1.0.0",
"description": "Create reusable Tailwind CSS components with React.",
"type": "module",
"types": "./dist/index.d.ts",
"exports": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "vitest",
"build": "rm -rf dist && rollup -c",
Expand Down

0 comments on commit ee1e6f5

Please sign in to comment.