I have two component in my library named lib-questionnaire and lib-choices.
The component lib-questionnaire uses lib-choices like this in its html file.
<div class="row">
<div class="col-xs-12">
<lib-choices
[name]="name"
[id]="id"
[choices]="choices">
</lib-choices
</div>
</div>
But since I have changes in my lib-questionnaire like adding another Input for example like this:
<div class="row">
<div class="col-xs-12">
<lib-choices
[name]="name"
[id]="id"
[multipleChoices]=true
[choices]="choices">
</lib-choices
</div>
</div>
The added Input which is [multipleChoice] is not currently declared in the lib-choices in the production but I've declared it in my local.
I've tried building first the lib-choices locally, then building the lib-questionnaire but it fails to build since it cannot accept my new input since it is not yet implemented in the production.
My question is how to build both of my components in the library locally?