mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
31 lines
504 B
Text
31 lines
504 B
Text
|
|
load("//tools:defaults.bzl", "ts_library")
|
||
|
|
|
||
|
|
package(default_visibility = ["//visibility:private"])
|
||
|
|
|
||
|
|
ts_library(
|
||
|
|
name = "testing",
|
||
|
|
srcs = [
|
||
|
|
"index.ts",
|
||
|
|
],
|
||
|
|
visibility = ["//adev/shared-docs:__subpackages__"],
|
||
|
|
deps = [
|
||
|
|
":lib",
|
||
|
|
],
|
||
|
|
)
|
||
|
|
|
||
|
|
ts_library(
|
||
|
|
name = "lib",
|
||
|
|
srcs = glob(
|
||
|
|
[
|
||
|
|
"*.ts",
|
||
|
|
],
|
||
|
|
exclude = [
|
||
|
|
"index.ts",
|
||
|
|
],
|
||
|
|
),
|
||
|
|
deps = [
|
||
|
|
"//packages/core",
|
||
|
|
"@npm//@webcontainer/api",
|
||
|
|
],
|
||
|
|
)
|