angular/packages/compiler-cli/ngcc/BUILD.bazel
Leosvel Pérez Espinosa cfab3ad706 refactor(compiler-cli): add back ngcc as a no-op with a warning (#50045)
This commit adds back `ngcc` as a no-op operation. When invoked it will warn providing details about removing `ngcc`.

In Angular 17, this will be removed.

PR Close #50045
2023-04-28 18:18:40 +02:00

12 lines
257 B
Text

load("//tools:defaults.bzl", "ts_library")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "ngcc",
srcs = ["index.ts"],
tsconfig = "//packages/compiler-cli:tsconfig",
deps = [
"@npm//@types/node",
],
)