mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
cfab3ad706
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
13 lines
257 B
Python
13 lines
257 B
Python
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",
|
|
],
|
|
)
|