You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the migrator on a library, authors will usually want to expose all the members that library defines from the library's entrypoint file (that is, the file passed initially to the migrator). The migrator should support a flag to do this automatically by @forwarding all the files that define public names that are transitively imported by the migrator.
The text was updated successfully, but these errors were encountered:
Resolves#47.
Adds a new flag `--forward` which can be `none` (default), `all`, or
`prefixed`.
If `--forward=all`, all global members from dependencies will be
forwarded from the entrypoint.
If `--forward=prefixed`, only members that were previously prefixed with
the value of `--remove-prefix` will be forwarded.
* Add flag for forwarding members from entrypoint
Resolves#47.
Adds a new flag `--forward` which can be `none` (default), `all`, or
`prefixed`.
If `--forward=all`, all global members from dependencies will be
forwarded from the entrypoint.
If `--forward=prefixed`, only members that were previously prefixed with
the value of `--remove-prefix` will be forwarded.
* Resolve code review comments
* Fix imports
When running the migrator on a library, authors will usually want to expose all the members that library defines from the library's entrypoint file (that is, the file passed initially to the migrator). The migrator should support a flag to do this automatically by
@forward
ing all the files that define public names that are transitively imported by the migrator.The text was updated successfully, but these errors were encountered: