Skip to content

Commit

Permalink
feat(DST-693): Expose theme.css files from packages (#4446)
Browse files Browse the repository at this point in the history
* feat(DST-693): Expose `theme.css` files from packages

* Create sixty-parrots-build.md
  • Loading branch information
sebald authored Feb 20, 2025
1 parent 67ee0a8 commit 3d7aaad
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .changeset/sixty-parrots-build.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"@marigold/theme-b2b": minor
"@marigold/theme-core": minor
"@marigold/theme-docs": minor
"@marigold/theme-rui": minor
---

feat(DST-693): Expose `theme.css` files from packages
3 changes: 2 additions & 1 deletion themes/theme-b2b/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"import": "./dist/*.mjs",
"require": "./dist/*.js"
},
"./styles.css": "./dist/styles.css"
"./styles.css": "./dist/styles.css",
"./theme.css": "./dist/theme.css"
},
"typesVersions": {
"*": {
Expand Down
3 changes: 2 additions & 1 deletion themes/theme-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"require": "./dist/*.js",
"import": "./dist/*.mjs"
},
"./styles.css": "./dist/styles.css"
"./styles.css": "./dist/styles.css",
"./theme.css": "./dist/theme.css"
},
"typesVersions": {
"*": {
Expand Down
3 changes: 2 additions & 1 deletion themes/theme-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"require": "./dist/*.js",
"import": "./dist/*.mjs"
},
"./styles.css": "./dist/styles.css"
"./styles.css": "./dist/styles.css",
"./theme.css": "./dist/theme.css"
},
"typesVersions": {
"*": {
Expand Down
3 changes: 2 additions & 1 deletion themes/theme-rui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"require": "./dist/*.js",
"import": "./dist/*.mjs"
},
"./styles.css": "./dist/styles.css"
"./styles.css": "./dist/styles.css",
"./theme.css": "./dist/theme.css"
},
"typesVersions": {
"*": {
Expand Down

0 comments on commit 3d7aaad

Please sign in to comment.