Sigurd Meldgaard
Sigurd Meldgaard
There are still a bunch of tests that could be written to validate new behavior - but I would like feedback on the change before digging too deep.
This change of behavior is unintentional :( I can reproduce, and will try to investigate why this happens.
Ah - now I realize the bug here. We switched from pub.dartlang.org to pub.dev as the default hosted source in 2.19. That makes pub see the packages as different (because...
Not sure what is the best fix, given that this already is out
So after looking at the code, I see that we are normalizing the two different hosts in most places, but missed when reading from the lockfile. I'm working on a...
Hotfix releases Dart 2.9.1 and Flutter 3.7.1 has landed with a fix.
For PUB_HOSTED_URL to work you need to set up a local server that responds to the [pub api](https://github.com/dart-lang/pub/blob/master/doc/repository-spec-v2.md). For just hosting (ie. not supporting uploads) packages from the file system...
We have `dart pub global list`, however I'm not sure it gives you enough to go on. You probably want a way to find the .dart_tool/package_config.json for each of these...
Not having to recompile the sdk every time would be awesome. But running from source is not that fast. We probably want some way of precompiling the analysis_server and other...
In maintaining the protobuf library we have functions that take positional optional arguments, making it hard to add further optional arguments. Refactoring the existing functions to take only named arguments...