angular/packages/core/schematics/utils/BUILD.bazel
Matthieu Riegler 8e50cdb930 refactor(compiler-cli): Remove deep imports of compiler-cli in angular/core
migration schematics will pull from `compiler-cli/private/migrations`
core tests will pull from `compiler-cli/private/testing`
2025-10-28 15:58:56 +01:00

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",
],
)