I wrapped the ngx library inside my own library and with angular 8 all was working fine. After the update with angular 9 i get the following error:
No pipe found with name 'translate'.
This error happen when i build with --prod and ivy activated. I don't get thie error when 'enableIvy: false'
I fixed it with adding this import 'TranslationServiceChildModule.forChild()' (this is the import to my wrapped module inside my library). It wasn't needed before why i need it now?
I wrapped the ngx library inside my own library and with angular 8 all was working fine. After the update with angular 9 i get the following error:
No pipe found with name 'translate'.
This error happen when i build with --prod and ivy activated. I don't get thie error when 'enableIvy: false'
I fixed it with adding this import 'TranslationServiceChildModule.forChild()' (this is the import to my wrapped module inside my library). It wasn't needed before why i need it now?
Current behavior
No pipe found with name 'translate'.
Expected behavior
The pipe should work also with ivy
Environment