Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upbuild: 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 |
This comment has been minimized.
This comment has been minimized.
devversion
Mar 18, 2020
•
Author
Member
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.
|
LGTM |
|
Hi @IgorMinar, as we discussed yesterday, you had some feedback about the changes in this PR (related to using |
|
|
angular-automatic-lock-bot
bot
commented
Apr 19, 2020
|
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. |
devversion commentedMar 18, 2020
•
edited
Follow-up for #36078. A few leftovers from from
@bazel/bazelto@bazel/bazeliskmigration are still there. This commit fixes those, sothat the repository no longer relies on
@bazel/bazel.