Skip to content

Commit 493e1f1

Browse files
MichaelMitchell-atjbedard
authored andcommitted
Add manual tags
1 parent a3a343f commit 493e1f1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ts/defs.bzl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,9 @@ def ts_project(
404404
name = transitive_typecheck_target_name,
405405
srcs = [name],
406406
output_group = "transitive_typecheck",
407-
**common_kwargs
407+
tags = ["manual"] + common_kwargs.get("tags", []),
408+
visibility = common_kwargs.get("visibility"),
409+
testonly = common_kwargs.get("testonly"),
408410
)
409411

410412
# Ensures the typecheck target gets built under `bazel test --build_tests_only`
@@ -419,7 +421,7 @@ def ts_project(
419421
build_test(
420422
name = transitive_typecheck_test_target_name,
421423
targets = [transitive_typecheck_target_name],
422-
tags = common_kwargs.get("tags"),
424+
tags = ["manual"] + common_kwargs.get("tags", []),
423425
size = "small",
424426
visibility = common_kwargs.get("visibility"),
425427
)

0 commit comments

Comments
 (0)