Morgan :)
Morgan :)
build_runner_core-9.3.0 seems to have "import 'dart:mirrors'" which is not supported in Dart runtime
I guess not, unless you have some package in `dependencies` that transitively pulls in `build_runner`. You can try removing `build_runner` from your dev dependencies then `flutter pub get` and try...
Do you mean output like the `.g.dart` files output by json_serializable? Currently these have to go next to the source code: if they are written somewhere else, other tools won't...
Right, we definitely need a better solution here. I'll rename the issue "Better support for hiding generated files", please say if that does not properly capture the issue :) I...
Fun fact: the Dart SDK already supports packages with multiple root folders: it's part of the bazel support, needed because bazel does output its generated files to a different folder....
One note is that when enhanced parts arrive, parts can have imports. That means they can no longer be merged so easily: it's simplest to have one part per builder....
> Parts can also define parts, right? Yes, enhanced parts can have imports and parts. > If so, I'm not worried. You could have .g.dart define parts that point to...
I'm not sure what's recommended here, it might make sense to ask first over at the webdev repo https://github.com/dart-lang/webdev but indeed `web_compilers` is in this repo, happy to help if...
It's reversing the outputs graph, so I think you have to process the whole thing in one go, then the result is cached for later lookups. It's used if serving...
For the `json_serializable` warnings: it could skip the warning if both annotations have the same value? Personally I don't like build warnings, I would prefer if it fails if it's...
@rrousselGit what did you think of the suggestion that json_serializable should not warn if the "duplicate" annotations are exactly the same?