-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix marking of development dependencies #782
Conversation
115045b
to
a032924
Compare
The bzlmod PR marked `arm64-to-sim`, `rules_pkg`, and `tart` as development dependencies. There are some repos relying on the versions defined in these so include them in the WORKSAPCE file when using `rules_ios_dependencies`.
a032924
to
0904d59
Compare
@@ -141,13 +143,6 @@ def _rules_ios_bzlmod_dependencies(): | |||
], | |||
) | |||
|
|||
def _rules_ios_bzlmod_dev_dependencies(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The git diff here seems wrong, the real change was moving rules_pkg
from _rules_ios_bzlmod_dev_dependencies
to _rules_ios_bzlmod_dependencies
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@luispadron thanks for the quick fix on this one 🙇 !
"com_github_yonaskolb_xcodegen", | ||
"tart", | ||
) | ||
|
||
non_module_dev_deps = use_extension( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could add a comment here:
Note: these are the deps used in rules_ios testing infra and examples and not for consumers
The bzlmod PR marked
arm64-to-sim
,rules_pkg
, andtart
as development dependencies. There are some repos relying on the versions defined in these so include them in the WORKSAPCE file when usingrules_ios_dependencies
.Fix #781