mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
8e50cdb930
migration schematics will pull from `compiler-cli/private/migrations` core tests will pull from `compiler-cli/private/testing`
16 lines
442 B
Python
16 lines
442 B
Python
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",
|
|
],
|
|
)
|