Skip to content

Commit 85c33ce

Browse files
committed
build: downgrade ibazel version to v0.12.0
We recently updated to ibazel v0.12.2. This version seems to have regressed with their `@bazel/bazelisk` support. To keep our development workflow working, we downgrade until the issue has been fixed upstream: bazelbuild/bazel-watcher#352
1 parent cf085b4 commit 85c33ce

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

WORKSPACE

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,17 @@ node_repositories(
4949

5050
yarn_install(
5151
name = "npm",
52+
# Redirects Yarn `stdout` output to `stderr`. This ensures that stdout is not
53+
# accidentally polluted when Bazel runs Yarn.
54+
args = ["2>&1"],
5255
# We add the postinstall patches file, and ngcc main fields update script here so
5356
# that Yarn will rerun whenever one of these files has been modified.
5457
data = [
5558
"//:tools/postinstall/apply-patches.js",
5659
"//:tools/postinstall/update-ngcc-main-fields.js",
5760
],
5861
package_json = "//:package.json",
62+
quiet = False,
5963
yarn_lock = "//:yarn.lock",
6064
)
6165

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"@angular/router": "^9.0.5",
7272
"@bazel/bazelisk": "^1.3.0",
7373
"@bazel/buildifier": "^0.29.0",
74-
"@bazel/ibazel": "^0.12.2",
74+
"@bazel/ibazel": "0.12.0",
7575
"@bazel/jasmine": "^1.4.0",
7676
"@bazel/karma": "^1.4.0",
7777
"@bazel/protractor": "^1.4.0",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,10 +260,10 @@
260260
"@bazel/buildifier-linux_x64" "0.29.0"
261261
"@bazel/buildifier-win32_x64" "0.29.0"
262262

263-
"@bazel/ibazel@^0.12.2":
264-
version "0.12.2"
265-
resolved "https://registry.yarnpkg.com/@bazel/ibazel/-/ibazel-0.12.2.tgz#98a290dbf8025076dd3040eab4f13a3d7e99357c"
266-
integrity sha512-CktVREceZn+6VokQ7A2qByuXBSGRM0THuyv68JUShHYyCkYS94nYMZEIe5NXk12CRzcpMLfZGD5Gdtr+jWs9pw==
263+
"@bazel/[email protected].0":
264+
version "0.12.0"
265+
resolved "https://registry.yarnpkg.com/@bazel/ibazel/-/ibazel-0.12.0.tgz#97aea5ee2d41d91995539df89efe11fd3fe128ca"
266+
integrity sha512-8ix3hmaV30xD9FIa9aJBtKhxUOBDo0NEULgOhgz5c8nytnD0ipPWqssWWq0iFU8oRBHpvNnuIESbzL1h/LU5iw==
267267

268268
"@bazel/jasmine@^1.4.0":
269269
version "1.4.0"

0 commit comments

Comments
 (0)