Skip to content

Commit

Permalink
fix: Update package.json style export (#1824)
Browse files Browse the repository at this point in the history
* fix: Update package.json style export

fix the restricted exports provided by package.json to allow scss to import

* fix: Update package.json

bad comma
  • Loading branch information
crhuff-ibm authored May 17, 2024
1 parent 777a1ad commit 2ccb12b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"require": "./dist/index.js"
},
"./styles.min.css": "./dist/styles.min.css",
"./styles.css": "./dist/styles.css"
"./styles.min": "./dist/styles.min.css",
"./styles.css": "./dist/styles.css",
"./styles": "./dist/styles.css"
},
"files": [
"dist",
Expand Down

0 comments on commit 2ccb12b

Please sign in to comment.