-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmigrations.json
60 lines (60 loc) · 2.63 KB
/
migrations.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"migrations": [
{
"version": "10.0.0-beta.0",
"description": "Add default branch to nx.json",
"factory": "./src/migrations/update-10-0-0/update-10-0-0",
"package": "@nrwl/workspace",
"name": "add-default-branch-to-nx-json"
},
{
"version": "10.0.0-beta.0",
"description": "Migrate tsconfigs to solution style tsconfigs",
"factory": "./src/migrations/update-10-0-0/solution-tsconfigs",
"package": "@nrwl/workspace",
"name": "solution-tsconfigs"
},
{
"version": "10.0.0-beta",
"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",
"factory": "./migrations/missing-injectable/index",
"package": "@angular/core",
"name": "migration-v10-missing-injectable"
},
{
"version": "10.0.0-beta",
"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",
"factory": "./migrations/module-with-providers/index",
"package": "@angular/core",
"name": "migration-v10-module-with-providers"
},
{
"version": "10.0.0-beta",
"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",
"factory": "./migrations/undecorated-classes-with-decorated-fields/index",
"package": "@angular/core",
"name": "migration-v10-undecorated-classes-with-decorated-fields"
},
{
"version": "10.0.0-beta.1",
"description": "Upgrades Angular and Angular CLI to 10.0.0",
"factory": "./src/migrations/update-10-0-0/update-10-0-0",
"package": "@nrwl/angular",
"name": "update-10-0-0"
},
{
"version": "10.0.0-beta.2",
"description": "update jest configs to include setup env files",
"factory": "./src/migrations/update-10-0-0/update-jest-configs",
"package": "@nrwl/jest",
"name": "update-10.0.0"
},
{
"version": "10.0.0-beta.1",
"description": "Update Nest.js libraries",
"factory": "./src/migrations/update-10-0-0/update-10-0-0",
"package": "@nrwl/nest",
"name": "update-10-0-0"
}
]
}