Skip to content

Commit

Permalink
fix: Export stylesheet.css in cozy-dataproxy-lib's package.json
Browse files Browse the repository at this point in the history
In consuming apps, we use to import the cozy-dataproxy-lib's stylesheet

Since 512e816 we use some exports in
the package.json that may prevent to import the stylesheet

So we want to add this file to exports options

Related commit: 512e816
  • Loading branch information
Ldoppea committed Jan 15, 2025
1 parent 160705b commit 3180654
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cozy-dataproxy-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
"exports": {
".": "./dist/index.js",
"./api": "./dist/api.js",
"./ui": "./dist/ui.js"
"./ui": "./dist/ui.js",
"./dist/stylesheet.css": "./dist/stylesheet.css"
},
"peerDependencies": {
"cozy-client": ">=51.0.1",
Expand Down

0 comments on commit 3180654

Please sign in to comment.