mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
migration schematics will pull from `compiler-cli/private/migrations` core tests will pull from `compiler-cli/private/testing`
15 lines
442 B
Text
15 lines
442 B
Text
load("//tools:defaults.bzl", "ts_project")
|
|
|
|
ts_project(
|
|
name = "utils",
|
|
srcs = glob(["**/*.ts"]),
|
|
visibility = ["//packages/core/schematics:__subpackages__"],
|
|
deps = [
|
|
"//:node_modules/@angular-devkit/core",
|
|
"//:node_modules/@angular-devkit/schematics",
|
|
"//:node_modules/typescript",
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli",
|
|
"//packages/compiler-cli/private",
|
|
],
|
|
)
|