Description
Feature Request
Some interface that would rebuild library project that is generated with ng g library niceLib
.
Of Course the best option would be ng serve niceLib
or include it to the application serve. Or at least another build that allow to add --watch
parameter like it does for for application. Here what I mean:
- for application we are allowed to run
ng build --watch
- for library we have
ng build niceLib
- but we can't use
ng build niceLib --watch
, as it throwsUnknown option: '--watch'