Open
Description
Before:
The analyze command used to run build internally.
Now:
Build is not part of analyze command. You need to follow below steps
- Run build with souceMap enabled
- Run the analyze
- Now you can use it in Nx workspace
Now options:
reportPath: You can generate report at a path
reportFormat: html | json | tsc , default is html
Config:
"generate-bundle": { "executor": "@ngx-builders/analyze:analyze", "options": { "outputPath": "dist/apps/ngu-carousel-example", "reportPath": "reports" } }
Activity