Skip to content

Commit

Permalink
fix css import
Browse files Browse the repository at this point in the history
  • Loading branch information
pix666 committed May 25, 2024
1 parent b2c4371 commit 3bd40f2
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paper-checkbox-tree",
"version": "0.1.3",
"version": "0.1.4",
"description": "A JavaScript component that transforms a select element into a checkbox tree.",
"keywords": [
"widgets",
Expand All @@ -26,9 +26,14 @@
"README.md"
],
"exports": {
"import": "./dist/es.js",
"style": "./dist/style.css",
"default": "./dist/cjs.js"
".": {
"import": "./dist/es.js",
"default": "./dist/cjs.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"default": "./dist/style.css"
}
},
"scripts": {
"build": "rollup -c",
Expand Down

0 comments on commit 3bd40f2

Please sign in to comment.