639b732024
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
11 lines
383 B
JSON
11 lines
383 B
JSON
{
|
|
// Migrations which are not publicly enabled but still run as part of tests need to
|
|
// be part of a schematic collection in order to be able to run it.
|
|
"schematics": {
|
|
"migration-missing-injectable": {
|
|
"description": "Migrates all declared undecorated providers with the @Injectable decorator",
|
|
"factory": "../migrations/missing-injectable/index"
|
|
}
|
|
}
|
|
}
|