Skip to content

Commit

Permalink
Fix @headlessui/tailwindcss exports map
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp-spiess committed Oct 22, 2024
1 parent 5eb3b12 commit 2e35d3b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
4 changes: 3 additions & 1 deletion packages/@headlessui-tailwindcss/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Nothing yet!
### Fixed

- Ensure the npm package `export` map is correct

## [0.2.1] - 2024-05-29

Expand Down
11 changes: 5 additions & 6 deletions packages/@headlessui-tailwindcss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@
"dist"
],
"exports": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/headlessui.esm.js",
"require": "./dist/index.cjs"
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/headlessui.esm.js"
}
},
"sideEffects": false,
"engines": {
Expand Down

0 comments on commit 2e35d3b

Please sign in to comment.