Reputation: 403
I'm trying to head up a potential project at work that would require our company to use components for our projects so that our products will have universal look/functionality to our brand. The main caveat is how do I manage this in such a way that updates/changes to components in the library automatically apply to all projects using them? Any basic tips on this would be very appreciated.
Upvotes: 6
Views: 280
Reputation: 607
Automatically is a strong word. The best way to go about creating a shared component library is to use NPM or even setup a private NPM repository at your company. Then any consumer of your library can just npm install
like any other dependency and update whenever they want
Upvotes: 4