Hey all.
I am trying to migrate to bzlmod a large codebase that one of its Bazel dependency is another (internal) local_repository.
Basically, the structure is:
```
/WORKSPACE: local_repository("inner", path="inner")
/inner/WORKSPACE
```
Both repositories have a lot of dependencies so we want to do to an incremental migration with the hybrid approach (introducing `MODULE.bazel` file and keep non-migrated deps in `WORKSAPCE.bzlmod` file).
When moving to the hybrid setup in the `inner` project, it builds just fine by itself - from its folder - but when trying to access the `inner` from the root workspace, things break: essentially, any dependency that is declared in the `WORKSPACE.bzlmod` file will not be visible to the `inner` workspace from the root scope, with the error:
```
ERROR: Skipping '@inner//...': error loading package under directory '': error loading package '@@inner+//src/main/java/com/example': Unable to find package for @@[unknown repo 'aspect_bazel_lib' requested from @@inner+]//lib:copy_to_bin.bzl: The repository '@@[unknown repo 'aspect_bazel_lib' requested from @@inner+]' could not be resolved: No repository visible as '@aspect_bazel_lib' from repository '@@inner+'.
ERROR: error loading package under directory '': error loading package '@@inner+//src/main/java/com/example': Unable to find package for @@[unknown repo 'aspect_bazel_lib' requested from @@inner+]//lib:copy_to_bin.bzl: The repository '@@[unknown repo 'aspect_bazel_lib' requested from @@inner+]' could not be resolved: No repository visible as '@aspect_bazel_lib' from repository '@@inner+'.
```
Any suggestions on how to overcome this issue?
Thank you.