How does the flat dependency model work in npm v3?
As you may know npm3 resolves dependencies in flat manner, as opposed to nested. So, my question is what if two different packages A & B depend on two different versions of package C? Will each version of package C be installed separately in node_modules
? Would love to get some primer here!
Thank You.