Skip to content

Commit

Permalink
Explicitly specify CSS export
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-edwards committed Dec 28, 2024
1 parent 73d06cd commit 53b2ee5
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,19 @@
"style.css"
],
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
"./style.css": {
"import": "./style.css",
"require": "./style.css"
}
},
"scripts": {
Expand Down

0 comments on commit 53b2ee5

Please sign in to comment.