Browse Source
Feature/import global styles in Storybook (#4302)
* feat(ui): include styles in storybook build
* chore(ui): cleanup
* fix(ui): remove styles from storybook target
* Update changelog
pull/4301/head^2
Ken Tandrian
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
12 additions and
2 deletions
-
CHANGELOG.md
-
libs/ui/.storybook/preview.js
-
libs/ui/project.json
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
|
|
|
|
- Added global styles to the _Storybook_ setup |
|
|
|
|
|
|
|
|
## 2.138.0 - 2025-02-08 |
|
|
## 2.138.0 - 2025-02-08 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
@ -1 +0,0 @@ |
|
|
// import '!style-loader!css-loader!sass-loader!../../../apps/client/src/styles.scss';
|
|
|
|
|
@ -44,7 +44,12 @@ |
|
|
"outputDir": "dist/storybook/ui", |
|
|
"outputDir": "dist/storybook/ui", |
|
|
"configDir": "libs/ui/.storybook", |
|
|
"configDir": "libs/ui/.storybook", |
|
|
"browserTarget": "ui:build-storybook", |
|
|
"browserTarget": "ui:build-storybook", |
|
|
"compodoc": false |
|
|
"compodoc": false, |
|
|
|
|
|
"styles": [ |
|
|
|
|
|
"apps/client/src/assets/fonts/inter.css", |
|
|
|
|
|
"apps/client/src/styles/theme.scss", |
|
|
|
|
|
"apps/client/src/styles.scss" |
|
|
|
|
|
] |
|
|
}, |
|
|
}, |
|
|
"configurations": { |
|
|
"configurations": { |
|
|
"ci": { |
|
|
"ci": { |
|
|