Skip to content

Commit 558522a

Browse files
committed
revert to original versions
1 parent 0a28aba commit 558522a

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

MODULE.bazel

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,8 @@ use_repo(bazel_lib_toolchains, "bsd_tar_toolchains")
5252
####### Dev dependencies ########
5353

5454
bazel_dep(name = "bazelrc-preset.bzl", version = "1.0.1", dev_dependency = True)
55-
bazel_dep(name = "aspect_rules_lint", version = "1.5.3", dev_dependency = True)
55+
bazel_dep(name = "aspect_rules_lint", version = "1.1.0", dev_dependency = True)
5656
bazel_dep(name = "buildifier_prebuilt", version = "8.0.1", dev_dependency = True)
57-
bazel_dep(name = "rules_multitool", version = "1.9.0", dev_dependency = True)
5857

5958
host = use_extension(
6059
"@aspect_bazel_lib//lib:extensions.bzl",

examples/runfiles/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ js_test(
1313
entry_point = "test.js",
1414
tags = ["skip-on-bazel8"],
1515
target_compatible_with = select({
16-
"@aspect_bazel_lib//lib:enable_runfiles": [],
17-
"//conditions:default": ["@platforms//:incompatible"],
16+
"@platforms//os:windows": ["@platforms//:incompatible"],
17+
"//conditions:default": [],
1818
}),
1919
)
2020

npm/private/test/BUILD.bazel

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,9 @@ sh_test(
7575
"@nodejs_linux_amd64//:node_files",
7676
"@nodejs_linux_arm64//:node_files",
7777
],
78+
target_compatible_with = select({
79+
"@platforms//os:windows": ["@platforms//:incompatible"],
80+
"//conditions:default": [],
81+
}),
7882
toolchains = ["@nodejs_toolchains//:resolved_toolchain"],
7983
)

npm/private/test/npm_package_publish/BUILD.bazel

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,8 @@ sh_test(
3434
"no-remote-exec",
3535
"no-sandbox",
3636
],
37+
target_compatible_with = select({
38+
"@platforms//os:windows": ["@platforms//:incompatible"],
39+
"//conditions:default": [],
40+
}),
3741
)

tools/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ package(default_visibility = ["//:__subpackages__"])
1111

1212
format_multirun(
1313
name = "format",
14-
# shell = "@aspect_rules_lint//format:shfmt",
14+
shell = "@aspect_rules_lint//format:shfmt",
1515
starlark = "@buildifier_prebuilt//:buildifier",
1616
)
1717

0 commit comments

Comments
 (0)