Browse Source
Feature/add Storybook to build process (#4340 )
* Add Storybook to build process
* Update changelog
pull/4372/head
Shaunak Das
4 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
4 additions and
3 deletions
CHANGELOG.md
libs/ui/project.json
package.json
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Extended the _Trackinsight_ data enhancer for asset profile data by `cusip`
- Added _Storybook_ to the build process
## 2.141.0 - 2025-02-25
@ -41,7 +41,7 @@
"executor" : "@storybook/angular:build-storybook" ,
"outputs" : [ "{options.outputDir}" ] ,
"options" : {
"outputDir" : "dist/storybook/ui " ,
"outputDir" : "dist/apps/client/development/ storybook" ,
"configDir" : "libs/ui/.storybook" ,
"browserTarget" : "ui:build-storybook" ,
"compodoc" : false ,
@ -61,7 +61,7 @@
"executor" : "@nx/web:file-server" ,
"options" : {
"buildTarget" : "ui:build-storybook" ,
"staticFilePath" : "dist/storybook/ui "
"staticFilePath" : "dist/storybook"
} ,
"configurations" : {
"ci" : {
@ -15,7 +15,7 @@
"affected:test" : "nx affected:test" ,
"analyze:client" : "nx run client:build:production --stats-json && webpack-bundle-analyzer -p 1234 dist/apps/client/en/stats.json" ,
"angular" : "node --max_old_space_size=32768 ./node_modules/@angular/cli/bin/ng" ,
"build:production" : "nx run api:copy-assets && nx run api:build:production && nx run client:copy-assets && nx run client:build:production && npm run replace-placeholders-in-build" ,
"build:production" : "nx run api:copy-assets && nx run api:build:production && nx run client:copy-assets && nx run client:build:production && nx run ui:build-storybook && n pm run replace-placeholders-in-build" ,
"build:storybook" : "nx run ui:build-storybook" ,
"database:format-schema" : "prisma format" ,
"database:generate-typings" : "prisma generate" ,