Skip to content

Commit 7e46202

Browse files
committed
chore: runfiles is now optional with rules_js
1 parent b9ae2ef commit 7e46202

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

.bazelrc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
# Take care to document any settings that you expect users to apply.
33
# Settings that apply only to CI are in .github/workflows/ci.bazelrc
44

5-
# For rules_js
6-
build --enable_runfiles
75
# Config to enable building and testing with bzlmod
86
common:bzlmod --enable_bzlmod --@aspect_bazel_lib//lib:flag_bzlmod
97

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module(
77
)
88

99
bazel_dep(name = "aspect_bazel_lib", version = "1.39.1")
10-
bazel_dep(name = "aspect_rules_js", version = "1.34.1")
10+
bazel_dep(name = "aspect_rules_js", version = "1.35.0")
1111
bazel_dep(name = "bazel_skylib", version = "1.5.0")
1212
bazel_dep(name = "platforms", version = "0.0.8")
1313
bazel_dep(name = "rules_nodejs", version = "5.8.3")

e2e/npm-links/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"Bazel dependencies"
22

33
bazel_dep(name = "aspect_rules_esbuild", version = "0.0.0", dev_dependency = True)
4-
bazel_dep(name = "aspect_rules_js", version = "1.34.1", dev_dependency = True)
4+
bazel_dep(name = "aspect_rules_js", version = "1.35.0", dev_dependency = True)
55
bazel_dep(name = "bazel_skylib", version = "1.5.0", dev_dependency = True)
66

77
local_path_override(

esbuild/dependencies.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ def rules_esbuild_dependencies():
2121

2222
http_archive(
2323
name = "aspect_rules_js",
24-
sha256 = "76a04ef2120ee00231d85d1ff012ede23963733339ad8db81f590791a031f643",
25-
strip_prefix = "rules_js-1.34.1",
26-
url = "https://github.com/aspect-build/rules_js/releases/download/v1.34.1/rules_js-v1.34.1.tar.gz",
24+
sha256 = "a2f941e27f02e84521c2d47fd530c66d57dd6d6e44b4a4f1496fe304851d8e48",
25+
strip_prefix = "rules_js-1.35.0",
26+
url = "https://github.com/aspect-build/rules_js/releases/download/v1.35.0/rules_js-v1.35.0.tar.gz",
2727
)
2828

2929
http_archive(

internal_deps.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ def rules_esbuild_internal_deps():
1313
# opt-in to 2.0 without forcing users to do so
1414
http_archive(
1515
name = "aspect_bazel_lib",
16-
sha256 = "fc8bd670380eaba5314769abbe9fee21d641e3da06d9d26b8073a301f6d62332",
17-
strip_prefix = "bazel-lib-2.1.0",
18-
url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.1.0/bazel-lib-v2.1.0.tar.gz",
16+
sha256 = "a9ea6902c860918bd6928114efbc6ea2093df006af66459c9ac1637f9dd08f6a",
17+
strip_prefix = "bazel-lib-2.1.2",
18+
url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.1.2/bazel-lib-v2.1.2.tar.gz",
1919
)
2020

2121
http_archive(

0 commit comments

Comments
 (0)