2018-05-30 16:02:53 -07:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
|
|
|
|
|
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
|
name = "util",
|
|
|
|
|
srcs = glob([
|
|
|
|
|
"src/**/*.ts",
|
|
|
|
|
]),
|
|
|
|
|
module_name = "@angular/compiler-cli/src/ngtsc/util",
|
2018-06-20 15:54:16 -07:00
|
|
|
deps = [
|
|
|
|
|
"//packages:types",
|
2018-10-04 13:14:14 -07:00
|
|
|
"@ngdeps//@types/node",
|
2018-10-24 18:39:29 +02:00
|
|
|
"@ngdeps//canonical-path",
|
2018-10-04 13:14:14 -07:00
|
|
|
"@ngdeps//typescript",
|
2018-06-20 15:54:16 -07:00
|
|
|
],
|
2018-05-30 16:02:53 -07:00
|
|
|
)
|