How does Yarn resolve conflicting dependencies?

I am new to yarn. I wonder how it resolves dependencies if I have package A and B in package.json where package A depends on package C@1.0.0 and package B depends on package C@2.0.0. Will it include both versions that bloat the build?

+3


source to share





All Articles