Skip to content

Commit efcc59f

Browse files
committed
feat: update to Angular 20
1 parent 4802201 commit efcc59f

File tree

7 files changed

+10241
-15612
lines changed

7 files changed

+10241
-15612
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ It is recommended to use these settings rather than attempt to override styles b
141141
| 17 | 6.0.0+ |
142142
| 18 | 9.0.0+ |
143143
| 19 | 10.0.0+ |
144+
| 20 | 11.0.0+ |
144145

145146
## Contributions welcome!
146147

angular.json

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"prefix": "app",
1111
"architect": {
1212
"build": {
13-
"builder": "@angular-devkit/build-angular:application",
13+
"builder": "@angular/build:application",
1414
"options": {
1515
"outputPath": {
1616
"base": "dist/ngx-diff-demo"
@@ -64,7 +64,7 @@
6464
"defaultConfiguration": ""
6565
},
6666
"serve": {
67-
"builder": "@angular-devkit/build-angular:dev-server",
67+
"builder": "@angular/build:dev-server",
6868
"options": {
6969
"buildTarget": "ngx-diff-demo:build"
7070
},
@@ -75,13 +75,13 @@
7575
}
7676
},
7777
"extract-i18n": {
78-
"builder": "@angular-devkit/build-angular:extract-i18n",
78+
"builder": "@angular/build:extract-i18n",
7979
"options": {
8080
"buildTarget": "ngx-diff-demo:build"
8181
}
8282
},
8383
"test": {
84-
"builder": "@angular-devkit/build-angular:karma",
84+
"builder": "@angular/build:karma",
8585
"options": {
8686
"main": "src/test.ts",
8787
"polyfills": "src/polyfills.ts",
@@ -106,7 +106,7 @@
106106
"prefix": "ngx",
107107
"architect": {
108108
"build": {
109-
"builder": "@angular-devkit/build-angular:ng-packagr",
109+
"builder": "@angular/build:ng-packagr",
110110
"options": {
111111
"tsConfig": "projects/ngx-diff/tsconfig.lib.json",
112112
"project": "projects/ngx-diff/ng-package.json"
@@ -118,7 +118,7 @@
118118
}
119119
},
120120
"test": {
121-
"builder": "@angular-devkit/build-angular:karma",
121+
"builder": "@angular/build:karma",
122122
"options": {
123123
"main": "projects/ngx-diff/src/test.ts",
124124
"tsConfig": "projects/ngx-diff/tsconfig.spec.json",
@@ -139,13 +139,35 @@
139139
},
140140
"schematics": {
141141
"@schematics/angular:component": {
142-
"style": "scss"
142+
"style": "scss",
143+
"type": "component"
143144
},
144145
"@angular-eslint/schematics:application": {
145146
"setParserOptionsProject": true
146147
},
147148
"@angular-eslint/schematics:library": {
148149
"setParserOptionsProject": true
150+
},
151+
"@schematics/angular:directive": {
152+
"type": "directive"
153+
},
154+
"@schematics/angular:service": {
155+
"type": "service"
156+
},
157+
"@schematics/angular:guard": {
158+
"typeSeparator": "."
159+
},
160+
"@schematics/angular:interceptor": {
161+
"typeSeparator": "."
162+
},
163+
"@schematics/angular:module": {
164+
"typeSeparator": "."
165+
},
166+
"@schematics/angular:pipe": {
167+
"typeSeparator": "."
168+
},
169+
"@schematics/angular:resolver": {
170+
"typeSeparator": "."
149171
}
150172
},
151173
"cli": {

0 commit comments

Comments
 (0)