angular/adev/shared-docs/testing/BUILD.bazel
Joey Perrott 73434e366f build: migrate all dependencies for adev into adev/package.json (#62435)
Migrate the dependencies into the adev/package.json instead of importing from the the root package.json

PR Close #62435
2025-07-03 08:09:34 +00:00

28 lines
528 B
Text

load("//adev/shared-docs:defaults.bzl", "ts_project")
package(default_visibility = ["//visibility:private"])
ts_project(
name = "testing",
srcs = [
"index.ts",
],
visibility = ["//adev/shared-docs:__subpackages__"],
deps = [
":lib_rjs",
],
)
ts_project(
name = "lib",
srcs = glob(
["*.ts"],
exclude = [
"index.ts",
],
),
deps = [
"//adev:node_modules/@angular/core",
"//adev:node_modules/@webcontainer/api",
],
)