17 lines
440 B
Python
17 lines
440 B
Python
|
load("//tools:defaults.bzl", "ts_library")
|
||
|
|
||
|
ts_library(
|
||
|
name = "postinstall-ngcc",
|
||
|
srcs = glob(["**/*.ts"]),
|
||
|
tsconfig = "//packages/core/schematics:tsconfig.json",
|
||
|
visibility = [
|
||
|
"//packages/core/schematics:__pkg__",
|
||
|
"//packages/core/schematics/test:__pkg__",
|
||
|
],
|
||
|
deps = [
|
||
|
"@npm//@angular-devkit/core",
|
||
|
"@npm//@angular-devkit/schematics",
|
||
|
"@npm//@schematics/angular",
|
||
|
],
|
||
|
)
|