Hi - I’m building a “starter app” that will be used as the basis for several other apps. For the purpose of DRY coding, I want to set up my reusable app components (service/provider/component/pages) as one or more libraries, so that I can import into my derivative ionic apps. Ideally, I would like to do this in such a way that I can use a package manager to control which versions of the libraries get used in the app and keep my derivative apps up-to-date as the starter app evolves.
I know how to do what I want using git submodules, but I’m guessing there are more elegant, best practice ways to build and use ionic pages/components/services as libraries for other ionic apps?
Can anyone point me to examples of best practice for this?
Thanks!