Skip to content

Commit 44f0ea2

Browse files
committed
feat: upgrade angular and nx
1 parent f3cf214 commit 44f0ea2

File tree

5 files changed

+8285
-3916
lines changed

5 files changed

+8285
-3916
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ Thumbs.db
4141

4242
TODO.md
4343
.nx/cache
44+
.nx/workspace-data

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55

66
.angular
77

8-
/.nx/cache
8+
/.nx/cache
9+
/.nx/workspace-data

migrations.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"migrations": [
3+
{
4+
"cli": "nx",
5+
"version": "19.2.0-beta.2",
6+
"description": "Updates the default workspace data directory to .nx/workspace-data",
7+
"implementation": "./src/migrations/update-19-2-0/move-workspace-data-directory",
8+
"package": "nx",
9+
"name": "19-2-0-move-graph-cache-directory"
10+
},
11+
{
12+
"cli": "nx",
13+
"version": "19.2.2-beta.0",
14+
"description": "Updates the nx wrapper.",
15+
"implementation": "./src/migrations/update-17-3-0/update-nxw",
16+
"package": "nx",
17+
"name": "19-2-2-update-nx-wrapper"
18+
},
19+
{
20+
"version": "19.2.4-beta.0",
21+
"description": "Set project name in nx.json explicitly",
22+
"implementation": "./src/migrations/update-19-2-4/set-project-name",
23+
"x-repair-skip": true,
24+
"package": "nx",
25+
"name": "19-2-4-set-project-name"
26+
},
27+
{
28+
"cli": "nx",
29+
"version": "19.2.1-beta.0",
30+
"requires": {
31+
"@angular-eslint/eslint-plugin": ">=18.0.0"
32+
},
33+
"description": "Installs the '@typescript-eslint/utils' package when having installed '@angular-eslint/eslint-plugin' or '@angular-eslint/eslint-plugin-template' with version >=18.0.0.",
34+
"factory": "./src/migrations/update-19-2-1/add-typescript-eslint-utils",
35+
"package": "@nx/angular",
36+
"name": "add-typescript-eslint-utils"
37+
},
38+
{
39+
"cli": "nx",
40+
"version": "19.5.0-beta.1",
41+
"requires": {
42+
"@angular/core": ">=18.1.0"
43+
},
44+
"description": "Update the @angular/cli package version to ~18.1.0.",
45+
"factory": "./src/migrations/update-19-5-0/update-angular-cli",
46+
"package": "@nx/angular",
47+
"name": "update-angular-cli-version-18-1-0"
48+
},
49+
{
50+
"version": "18.1.0",
51+
"description": "Updates calls to afterRender with an explicit phase to the new API",
52+
"factory": "./migrations/after-render-phase/bundle",
53+
"package": "@angular/core",
54+
"name": "migration-after-render-phase"
55+
}
56+
]
57+
}

0 commit comments

Comments
 (0)