Files
rules_bun/tests/library_test/BUILD.bazel
2026-03-15 11:04:44 +01:00

29 lines
590 B
Python

load("@rules_shell//shell:sh_test.bzl", "sh_test")
load("//bun:defs.bzl", "bun_bundle", "bun_test", "ts_library")
ts_library(
name = "helper_lib",
srcs = ["helper.ts"],
)
bun_bundle(
name = "bundle_with_deps",
entry_points = ["app.ts"],
deps = [":helper_lib"],
)
sh_test(
name = "bundle_dep_propagation_test",
size = "small",
srcs = ["verify_bundle.sh"],
args = ["$(location :bundle_with_deps)"],
data = [":bundle_with_deps"],
)
bun_test(
name = "test_with_deps",
size = "small",
srcs = ["app.test.ts"],
deps = [":helper_lib"],
)