UNPKG

3.46 kBJSONView Raw
1{
2 "schematics": {
3 "migration-v8-move-document": {
4 "version": "8.0.0-beta",
5 "description": "@DOCUMENT migration. Migrates DOCUMENT Injection token from platform-browser imports to common import.",
6 "factory": "./migrations/move-document/index"
7 },
8 "migration-v8-static-queries": {
9 "version": "8.0.0-beta",
10 "description": "ViewChild and ContentChild to explicit query timing migration. In Angular version 8, developers need to explicitly specify the timing of ViewChild and ContentChild queries. Read more about this here: https://v8.angular.io/guide/static-query-migration",
11 "factory": "./migrations/static-queries/index"
12 },
13 "migration-v8-template-local-variables": {
14 "version": "8.0.0-beta",
15 "description": "Template Variable Assignment migration. Warns developers if values are assigned to template variables.",
16 "factory": "./migrations/template-var-assignment/index"
17 },
18 "migration-v9-renderer-to-renderer2": {
19 "version": "9.0.0-beta",
20 "description": "Renderer to Renderer2 migration. As of Angular 9, the Renderer class is no longer available. Renderer2 should be used instead. Read more about this here: https://v9.angular.io/guide/migration-renderer",
21 "factory": "./migrations/renderer-to-renderer2/index"
22 },
23 "migration-v9-undecorated-classes-with-di": {
24 "version": "9.0.0-beta",
25 "description": "Undecorated classes with DI migration. As of Angular 9, it is no longer supported to use Angular DI on a class that does not have an Angular decorator. Read more about this here: https://v9.angular.io/guide/migration-undecorated-classes",
26 "factory": "./migrations/undecorated-classes-with-di/index"
27 },
28 "migration-v9-dynamic-queries": {
29 "version": "9-beta",
30 "description": "Static flag migration. Removes the `static` flag from dynamic queries. As of Angular 9, the \"static\" flag defaults to false and is no longer required for your view and content queries. Read more about this here: https://v9.angular.io/guide/migration-dynamic-flag",
31 "factory": "./migrations/dynamic-queries/index"
32 },
33 "migration-v10-missing-injectable": {
34 "version": "10.0.0-beta",
35 "description": "Missing @Injectable and incomplete provider definition migration. As of Angular 9, enforcement of @Injectable decorators for DI is a bit stricter and incomplete provider definitions behave differently. Read more about this here: https://v9.angular.io/guide/migration-injectable",
36 "factory": "./migrations/missing-injectable/index"
37 },
38 "migration-v10-module-with-providers": {
39 "version": "10.0.0-beta",
40 "description": "ModuleWithProviders migration. As of Angular 10, the ModuleWithProviders type requires a generic. This migration adds the generic where it is missing. Read more about this here: https://v10.angular.io/guide/migration-module-with-providers",
41 "factory": "./migrations/module-with-providers/index"
42 },
43 "migration-v10-undecorated-classes-with-decorated-fields": {
44 "version": "10.0.0-beta",
45 "description": "Undecorated classes with Angular features migration. In version 10, classes that use Angular features and do not have an Angular decorator are no longer supported. Read more about this here: https://v10.angular.io/guide/migration-undecorated-classes",
46 "factory": "./migrations/undecorated-classes-with-decorated-fields/index"
47 }
48 }
49}