mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Allows the ng-devtools library to be built with bazel. ng-devtools can now be used as a dependency in other bazel build rules.
16 lines
425 B
Text
16 lines
425 B
Text
load("//tools:angular_ts_library.bzl", "ng_ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ng_ts_library(
|
|
name = "src",
|
|
srcs = ["public-api.ts"],
|
|
deps = [
|
|
"//projects/ng-devtools/src/lib",
|
|
"//projects/ng-devtools/src/lib/application-environment",
|
|
"//projects/ng-devtools/src/lib/application-operations",
|
|
],
|
|
tsconfig = "//projects/ng-devtools:tsconfig-lib"
|
|
)
|
|
|
|
|