-
Notifications
You must be signed in to change notification settings - Fork 26.4k
build: fix @bazel/bazel to bazelisk leftovers #36132
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
build: fix @bazel/bazel to bazelisk leftovers #36132
Conversation
A few leftovers from from `@bazel/bazel` to `@bazel/bazelisk` migration are still there. This commit fixes those, so that the repository no longer relies on `@bazel/bazel`.
# through `yarn bazel` causes additional output that throws off the command stdout. | ||
BAZEL_BIN=$(yarn bin)/bazel | ||
# through `yarn bazelisk` causes additional output that throws off the command stdout. | ||
BAZEL_BIN=$(yarn bin)/bazelisk |
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.
I considered switching this to yarn --silent bazel
(to fix the stdout capturing and to consistently use yarn bazel
), but decided to keep it as is.
Mostly because bazel query <..> kind("ng_package|pkg_npm", //packages/...)
breaks on Windows unexpectedly with yarn --silent bazel
.
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.
LGTM
Hi @IgorMinar, as we discussed yesterday, you had some feedback about the changes in this PR (related to using |
👍 Sounds good to me. Would love to get feedback on this. Note that I replied on why I intentionally didn't use |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Follow-up for #36078. A few leftovers from from
@bazel/bazel
to@bazel/bazelisk
migration are still there. This commit fixes those, sothat the repository no longer relies on
@bazel/bazel
.