Skip to content

Commit c609e61

Browse files
committed
build: update aspect_bazel_lib to fix windows gzip issues
Workaround until `rules_js` imports the latest version of `aspect_bazel_lib`: https://github.com/bazel-contrib/bazel-lib/issues/968
1 parent 5b694cd commit c609e61

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

WORKSPACE

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,15 @@ http_archive(
3838

3939
load("@aspect_rules_js//js:repositories.bzl", "rules_js_dependencies")
4040

41+
# Override for `rules_js` version of Aspect lib due to a bug on Windows
42+
# https://github.com/bazel-contrib/bazel-lib/issues/968
43+
http_archive(
44+
name = "aspect_bazel_lib",
45+
sha256 = "349aabd3c2b96caeda6181eb0ae1f14f2a1d9f3cd3c8b05d57f709ceb12e9fb3",
46+
strip_prefix = "bazel-lib-2.9.4",
47+
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.9.4/bazel-lib-v2.9.4.tar.gz",
48+
)
49+
4150
rules_js_dependencies()
4251

4352
http_archive(

0 commit comments

Comments
 (0)