Rico Hermans

Results 114 comments of Rico Hermans

> you can be sure there would be a bunch of "always pin all your dependencies" blog posts that would suddenly appear, and it's hard to evaluate the medium- and...

It seems your proposed API does more or less the same as what `findResources` does, except with a fluent API style instead of all in one method call. Is that...

Hi @wanjacki! Thanks for submitting this! The goal of the RFC process is to describe the feature, *with code samples*, in user-facing language. (Effectively, what would go into the README)...

I would love to help, but I have to confess I'm not totally sure what the correct behaviour ought to be :). Anyway, I will try to take a crack...

Can you succeed silently instead of failing? I don't know a 100% for sure but I have a suspicion that Mergify currently failing is causing Dependabot to ignore the PR.

Here's an example of a PR that Dependabot/Mergify aren't playing nice together: https://github.com/aws/aws-cdk/pull/6337

This is a bit of an aside, but I wonder why all these features need to come from inheritance anyway. The problem with inheritance is that it starts to get...

> (2) change the other core classes (Component and FileBase) to only depend on the unopinionated base class > Here's an example to make (2) more concrete. Previously, if I...

The problem you now find yourself in is a prime example of why designing with and for inheritance is going to give you trouble sooner or later, because it takes...

FWIW, if you add the new classes and keep the existing definitions of `Project` and `Component` unchanged, I don't see how this would introduce any breaking changes, so it seems...