When I think about the pros and cons of a static library folder and a package manager I feel like the library folder is a better approach.
Pros ofI see with a library folder:
- No need for an external tool to manage packages.
- No internet connection required to build.
- Faster build (no package checking).
- Simpler environment (less knowledge required).
Pros ofI see with a package manager:
- Helps with complex dependency trees (and that can be managed downloading a dependency together with all its dependencies).
- Helps checking if there is a new version available.
Despite that, itIt seems the industry has decided to follow the package manager path for almost everything built today. So, what am I missing?