I have developed an Angular 5 application(consider 'A') with webpack where I get 2 bundles(vendor.js and main.client.js) finally which I import in the index.html.
My scenario is I have another Angular 5 application(consider 'B') from which I should consume those 'A' application bundles. Intention is I have to import 'A' application service into 'B' and call a function, a kind of dependency injection. I don't have base idea on how to do this after several searches. Could someone please help me in giving a hint or reference out.Thanks.