Comment on Why is the Node ecosystem so demanding?
kogasa@programming.dev 1 year agoIn C# you can automatically generate (or manually write) binding redirects that let you say “anything using versions between x.y.0 and x.y.9 should use x.y.9”, which helps a lot with transitive dependencies. However, doing this manually is hard, and you can’t really rely on semver to be done “correctly.” This leads to subtle bugs. Occasionally not so subtle, but hard to diagnose.
Urik@lemmy.ca 1 year ago
I think NPM has the same feature, it’s called overrides