
Initially the plan was to have a migration that adds `@Injectable()` to all pipes in a CLI project so that the pipes can be injected in Ivy similarly to how it worked in view engine. Due to the planned refactorings which ensure that `@Directive`, `@Component` and `@Pipe` also have a factory definition, this migration is no longer needed for Ivy. Additionally since it is already disabled (due to 572b54967c969c88c61970650fb857afc1d74f8a) and we have a more generic migration (known as `missing-injectable)` that could do the same as `injectable-pipe`, we remove the migration from the code-base. PR Close #32184
20 lines
758 B
Python
20 lines
758 B
Python
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "google3",
|
|
srcs = glob(["**/*.ts"]),
|
|
tsconfig = "//packages/core/schematics:tsconfig.json",
|
|
visibility = ["//packages/core/schematics/test/google3:__pkg__"],
|
|
deps = [
|
|
"//packages/core/schematics/migrations/missing-injectable",
|
|
"//packages/core/schematics/migrations/missing-injectable/google3",
|
|
"//packages/core/schematics/migrations/renderer-to-renderer2",
|
|
"//packages/core/schematics/migrations/static-queries",
|
|
"//packages/core/schematics/migrations/template-var-assignment",
|
|
"//packages/core/schematics/utils",
|
|
"//packages/core/schematics/utils/tslint",
|
|
"@npm//tslint",
|
|
"@npm//typescript",
|
|
],
|
|
)
|