mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
cbc258eec8
Remove the interop macros and final usages PR Close #62908
34 lines
680 B
Python
34 lines
680 B
Python
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",
|
|
],
|
|
)
|