Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/cool-forks-juggle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@tailor-platform/app-shell": patch
---

Restore the `@tailor-platform/app-shell/theme.css` export as a no-op compatibility shim.

Apps that still import `@tailor-platform/app-shell/theme.css` alongside `@tailor-platform/app-shell/styles` now keep building while the real theme tokens continue to come from `styles`.
1 change: 1 addition & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"type": "module",
"exports": {
"./styles": "./dist/app-shell.css",
"./theme.css": "./dist/theme.shims.css",
"./themes/*": "./dist/themes/*.css",
".": {
"types": "./dist/app-shell.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/core/src/assets/theme.shims.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/*
* Deprecated compatibility shim.
*
* `@tailor-platform/app-shell/styles` now includes the default theme tokens,
* so this file intentionally does nothing. Keep exporting it so older apps
* that still import `@tailor-platform/app-shell/theme.css` keep building.
*/
Loading