Description
I have an existing react app, which is currently used like a traditional a react app: Basically load the bundled JS version in a HTML page and get going.
I want/need to keep using it this way.
But as my needs are growing, I also need to use it within another react app and I wonder about how I should do it properly. Based on my current usage, I already have a CDN with the bundled versions.
But I don't think I can use it this way inside another react app.
I read about #1492 but didn't really find any good solution so far. I've thought about releasing a npm version, which would allow me to use it as a component (I guess), but would also be more work to deal with, with versioning and releasing both the bundled and npm version at every update. What are my options?