Jacob MacDonald
Jacob MacDonald
Should we make a more general tool for this and just link it? I don't think we want gigantic error messages...
There are other use cases for wanting to know why you depend on some dart library though - which is why I was thinking a more general tool might make...
I think a reasonable path forward here would be to output a file when we hit this case that represents all the paths to these bad libraries, probably DOT file...
Actually nvm I think something simpler is probably fine, will just output the shortest path to each unsupported module. Note this will be module paths not import paths.
Ok, so I tried doing that with just the module graph and it ends up just being confusing, see this output from repo_manager before it was fixed. ``` [WARNING] build_web_compilers:entrypoint...
If you are importing from `lib/src/` in your own package that can cause this (you can end up importing a module that contains more libraries in the same package that...
I don't believe `flutter build web` uses this package. What error are you seeing?
Interesting... cc @jonahwilliams maybe something changed here so it is using this package for release builds as well. In that case we likely need to whitelist the flutter packages in...
It is possible that this is compiling some additional entrypoints? There should be some additional log lines that tell you what app it was actually trying to compile (should be...
Huh, I think maybe flutter tool is stripping out our logger info lines? @jonahwilliams It looks like it did in fact compile the `dummy_main.dart` file which I assume is the...