Skip to content

Commit d0d548b

Browse files
committed
feat: update Angular dependencies to version 20 and refactor components for improved structure and styling
BREAKING CHANGE: update to Angular 20, bump peer deps version range
1 parent b1a4cfc commit d0d548b

File tree

12 files changed

+12903
-18637
lines changed

12 files changed

+12903
-18637
lines changed

angular.json

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"prefix": "ax",
1111
"architect": {
1212
"build": {
13-
"builder": "@angular-devkit/build-angular:ng-packagr",
13+
"builder": "@angular/build:ng-packagr",
1414
"options": {
1515
"project": "projects/resource/ng-package.json"
1616
},
@@ -52,7 +52,7 @@
5252
"prefix": "showcase",
5353
"architect": {
5454
"build": {
55-
"builder": "@angular-devkit/build-angular:application",
55+
"builder": "@angular/build:application",
5656
"options": {
5757
"outputPath": "dist/showcase",
5858
"index": "projects/showcase/src/index.html",
@@ -107,7 +107,7 @@
107107
"defaultConfiguration": "production"
108108
},
109109
"serve": {
110-
"builder": "@angular-devkit/build-angular:dev-server",
110+
"builder": "@angular/build:dev-server",
111111
"configurations": {
112112
"production": {
113113
"buildTarget": "showcase:build:production"
@@ -119,7 +119,7 @@
119119
"defaultConfiguration": "development"
120120
},
121121
"extract-i18n": {
122-
"builder": "@angular-devkit/build-angular:extract-i18n"
122+
"builder": "@angular/build:extract-i18n"
123123
},
124124
"lint": {
125125
"builder": "@angular-eslint/builder:lint",
@@ -136,5 +136,31 @@
136136
},
137137
"cli": {
138138
"analytics": false
139+
},
140+
"schematics": {
141+
"@schematics/angular:component": {
142+
"type": "component"
143+
},
144+
"@schematics/angular:directive": {
145+
"type": "directive"
146+
},
147+
"@schematics/angular:service": {
148+
"type": "service"
149+
},
150+
"@schematics/angular:guard": {
151+
"typeSeparator": "."
152+
},
153+
"@schematics/angular:interceptor": {
154+
"typeSeparator": "."
155+
},
156+
"@schematics/angular:module": {
157+
"typeSeparator": "."
158+
},
159+
"@schematics/angular:pipe": {
160+
"typeSeparator": "."
161+
},
162+
"@schematics/angular:resolver": {
163+
"typeSeparator": "."
164+
}
139165
}
140166
}

0 commit comments

Comments
 (0)