Skip to content

Commit 6f13ff9

Browse files
committed
feat: migrate to angular 20
1 parent ae4e899 commit 6f13ff9

File tree

158 files changed

+14592
-18947
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+14592
-18947
lines changed

angular.json

Lines changed: 38 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"prefix": "app",
3838
"architect": {
3939
"build": {
40-
"builder": "@angular-devkit/build-angular:application",
40+
"builder": "@angular/build:application",
4141
"options": {
4242
"outputPath": "dist/documentation",
4343
"index": "src/index.html",
@@ -74,7 +74,7 @@
7474
"defaultConfiguration": "production"
7575
},
7676
"serve": {
77-
"builder": "@angular-devkit/build-angular:dev-server",
77+
"builder": "@angular/build:dev-server",
7878
"configurations": {
7979
"production": {
8080
"buildTarget": "mantic-ui-test:build:production"
@@ -87,13 +87,13 @@
8787
"defaultConfiguration": "development"
8888
},
8989
"extract-i18n": {
90-
"builder": "@angular-devkit/build-angular:extract-i18n",
90+
"builder": "@angular/build:extract-i18n",
9191
"options": {
9292
"buildTarget": "mantic-ui-test:build"
9393
}
9494
},
9595
"test": {
96-
"builder": "@angular-devkit/build-angular:karma",
96+
"builder": "@angular/build:karma",
9797
"options": {
9898
"polyfills": [
9999
"zone.js",
@@ -146,7 +146,7 @@
146146
"prefix": "m",
147147
"architect": {
148148
"build": {
149-
"builder": "@angular-devkit/build-angular:ng-packagr",
149+
"builder": "@angular/build:ng-packagr",
150150
"options": {
151151
"project": "projects/fomantic-ui/ng-package.json"
152152
},
@@ -161,7 +161,7 @@
161161
"defaultConfiguration": "production"
162162
},
163163
"test": {
164-
"builder": "@angular-devkit/build-angular:karma",
164+
"builder": "@angular/build:karma",
165165
"options": {
166166
"tsConfig": "projects/fomantic-ui/tsconfig.spec.json",
167167
"polyfills": [
@@ -206,7 +206,7 @@
206206
"prefix": "m",
207207
"architect": {
208208
"build": {
209-
"builder": "@angular-devkit/build-angular:ng-packagr",
209+
"builder": "@angular/build:ng-packagr",
210210
"options": {
211211
"project": "projects/mantic-ui/ng-package.json"
212212
},
@@ -221,7 +221,7 @@
221221
"defaultConfiguration": "production"
222222
},
223223
"test": {
224-
"builder": "@angular-devkit/build-angular:karma",
224+
"builder": "@angular/build:karma",
225225
"options": {
226226
"tsConfig": "projects/mantic-ui/tsconfig.spec.json",
227227
"polyfills": [
@@ -266,7 +266,7 @@
266266
"prefix": "m",
267267
"architect": {
268268
"build": {
269-
"builder": "@angular-devkit/build-angular:ng-packagr",
269+
"builder": "@angular/build:ng-packagr",
270270
"options": {
271271
"project": "projects/semantic-ui/ng-package.json"
272272
},
@@ -281,7 +281,7 @@
281281
"defaultConfiguration": "production"
282282
},
283283
"test": {
284-
"builder": "@angular-devkit/build-angular:karma",
284+
"builder": "@angular/build:karma",
285285
"options": {
286286
"tsConfig": "projects/semantic-ui/tsconfig.spec.json",
287287
"polyfills": [
@@ -326,7 +326,7 @@
326326
"prefix": "m",
327327
"architect": {
328328
"build": {
329-
"builder": "@angular-devkit/build-angular:ng-packagr",
329+
"builder": "@angular/build:ng-packagr",
330330
"options": {
331331
"project": "projects/mantic-ui-doc/ng-package.json"
332332
},
@@ -341,7 +341,7 @@
341341
"defaultConfiguration": "production"
342342
},
343343
"test": {
344-
"builder": "@angular-devkit/build-angular:karma",
344+
"builder": "@angular/build:karma",
345345
"options": {
346346
"tsConfig": "projects/mantic-ui-doc/tsconfig.spec.json",
347347
"polyfills": [
@@ -352,5 +352,31 @@
352352
}
353353
}
354354
}
355+
},
356+
"schematics": {
357+
"@schematics/angular:component": {
358+
"type": "component"
359+
},
360+
"@schematics/angular:directive": {
361+
"type": "directive"
362+
},
363+
"@schematics/angular:service": {
364+
"type": "service"
365+
},
366+
"@schematics/angular:guard": {
367+
"typeSeparator": "."
368+
},
369+
"@schematics/angular:interceptor": {
370+
"typeSeparator": "."
371+
},
372+
"@schematics/angular:module": {
373+
"typeSeparator": "."
374+
},
375+
"@schematics/angular:pipe": {
376+
"typeSeparator": "."
377+
},
378+
"@schematics/angular:resolver": {
379+
"typeSeparator": "."
380+
}
355381
}
356382
}

0 commit comments

Comments
 (0)