Andrew Lorenzen
Andrew Lorenzen
I'm working with a package ([reflectable](https://github.com/google/reflectable.dart)), which currently specifies `build_to: source`. I would much rather prefer that it build to the cache. What's frustrating with the `.build.yaml` approach is that...
Do we want to support overriding commands like this, or would it be better to just bake support for flutter into the mono_repo tool? I.e., if your pubspec specified the...
Instead of `pub run mono_repo pub get`, just try `mono_repo pub get`. I'm guessing that the `> Could not find a file named "pubspec.yaml" in "/Users/eugene.kot/reps/test".` error is coming from...
@bwilkerson I want to check the value of `convert(node)`, not `node` for nullability. You're example would require me to call `convert` twice, which I do not want to do: ```...
I think this is a perfect item for the analyzer plugin, but I'm not sure it makes sense for the compiler. Just like we shouldn't block development flow for unused...
If only we could have positional and named params in the same parameter list...
Our support for event tearoffs is pretty limited. I think you'll need to write the full expression here: `(ngModelChange)="input.textChange($event)"`
This seems like a use case that `ngNonBindable` was intended to solve. But no one (at least internally) was using that feature at all. So we're dropping it with the...
One idea that has come up in discussions is the ability to define Outputs as a transformation only, via a callback method for an event on an inner component. Then,...
I agree with @natebosch on this one. Also, an engineer on a internal team who originally proposed this to me said that he looked through the codebase and found many...