Daco Harkes
Daco Harkes
I think we chose this because that's where the package is hosted. E.g. repository url, but that might not be the right thing to do. (Speaking as someone who almost...
No hunches. This is using code assets to bundle rust code right? No idea why `dart run` and `dart test` would provide different results. This will require a 🤿 to...
> This works as long as the tests are written to not assume a particular working directory. Yeah, I've been fixing tests so that they don't assume this. This enables...
> When building native assets using the native_toolchain_cmake package, I find myself having to delete the .dart_tool directory often as the builder does not pick up on file changes in...
Maybe the lint could run in the context of the `lib/foo.dart` that contains all the export statements, and check that all types in the method signatures and type parameters are...
> That sounds a bit like [`library_private_types_in_public_api`](https://dart.dev/tools/linter-rules/library_private_types_in_public_api). Yes, but I also want to flag "package private" types. In other words, the types only available in the src/ directory (https://dart.dev/tools/pub/package-layout#implementation-files) but...
Thanks for the quick reply! Here's a small repro. pkgs/repro/lib/schema/base.schema.json ```json { "$schema": "https://json-schema.org/draft-07/schema#", "type": "object", "properties": { "some_int": { "type": "integer" } }, "required": [ "some_int" ] } ```...
The way that the Windows commandline compiler works is that you're supposed to launch a different shell, that has all these env-vars set (including where to find standard libraries.) >...
Another consideration is doing unneeded work if no code assets are built. If we do this inside `flutter_tools`, we'll need to always run it. If we always invoke the script...
> If we always invoke the script we should consider just putting the environment variables into the environment the hook is invoked with. Then we can completely omit a `CompilerConfig.environment`...