Skip to content

Commit

Permalink
chore: bump rules_js dep to 1.29.2 to pickup Windows fix (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregmagolan authored Jul 4, 2023
1 parent 60734c7 commit dc5f454
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .bcr/presubmit.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
bcr_test_module:
module_path: 'e2e/bzlmod'
matrix:
# TODO(aspect-team): windows https://github.com/aspect-build/rules_ts/issues/228
platform: ['debian10', 'macos', 'ubuntu2004']
platform: ['debian10', 'macos', 'ubuntu2004', 'windows']
tasks:
run_tests:
name: 'Run test module'
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module(
bazel_dep(name = "bazel_skylib", version = "1.4.1")
bazel_dep(name = "buildifier_prebuilt", version = "6.0.0.1", dev_dependency = True)
bazel_dep(name = "rules_nodejs", version = "5.8.2", dev_dependency = True)
bazel_dep(name = "aspect_rules_js", version = "1.23.1")
bazel_dep(name = "aspect_rules_js", version = "1.29.2")
bazel_dep(name = "aspect_bazel_lib", version = "1.29.2")

rules_ts_ext = use_extension(
Expand Down
2 changes: 1 addition & 1 deletion e2e/bzlmod/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module(
)

# repeated here only because we use the platforms definitions for rbe
bazel_dep(name = "aspect_rules_js", version = "1.23.1", dev_dependency = True)
bazel_dep(name = "aspect_rules_js", version = "1.29.2", dev_dependency = True)
bazel_dep(name = "aspect_rules_ts", version = "0.0.0", dev_dependency = True)
bazel_dep(name = "bazel_skylib", version = "1.4.1", dev_dependency = True)

Expand Down
6 changes: 3 additions & 3 deletions ts/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ def rules_ts_dependencies(ts_version_from = None, ts_version = None, ts_integrit

http_archive(
name = "aspect_rules_js",
sha256 = "2a1e5d4400e2b49f6d36785aa894412670a0babfe7054e733b6a8f23c1b41e26",
strip_prefix = "rules_js-1.23.1",
url = "https://github.com/aspect-build/rules_js/releases/download/v1.23.1/rules_js-v1.23.1.tar.gz",
sha256 = "7cb2d84b7d5220194627c9a0267ae599e357350e75ea4f28f337a25ca6219b83",
strip_prefix = "rules_js-1.29.2",
url = "https://github.com/aspect-build/rules_js/releases/download/v1.29.2/rules_js-v1.29.2.tar.gz",
)

http_archive(
Expand Down

0 comments on commit dc5f454

Please sign in to comment.