mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
33 lines
680 B
Text
33 lines
680 B
Text
load("//adev/shared-docs:defaults.bzl", "ng_project", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:private"])
|
|
|
|
ts_project(
|
|
name = "providers",
|
|
srcs = [
|
|
"index.ts",
|
|
],
|
|
visibility = ["//adev/shared-docs:__subpackages__"],
|
|
deps = [
|
|
":lib",
|
|
],
|
|
)
|
|
|
|
ng_project(
|
|
name = "lib",
|
|
srcs = glob(
|
|
[
|
|
"**/*.ts",
|
|
],
|
|
exclude = [
|
|
"index.ts",
|
|
"**/*.spec.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//adev:node_modules/@angular/common",
|
|
"//adev:node_modules/@angular/core",
|
|
"//adev:node_modules/@angular/router",
|
|
"//adev/shared-docs/interfaces",
|
|
],
|
|
)
|