Skip to content

Commit 964fb93

Browse files
committed
chore: migrate to Angular 20
1 parent 91b0f3f commit 964fb93

File tree

4 files changed

+2450
-1759
lines changed

4 files changed

+2450
-1759
lines changed

bootstrap5-standalone-with-translate/angular.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,30 @@
144144
"schematics": {
145145
"@schematics/angular:component": {
146146
"prefix": "app",
147-
"style": "scss"
147+
"style": "scss",
148+
"type": "component"
148149
},
149150
"@schematics/angular:directive": {
150-
"prefix": "app"
151+
"prefix": "app",
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": "."
151171
}
152172
},
153173
"cli": {

bootstrap5-standalone-with-translate/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
},
2929
"private": false,
3030
"dependencies": {
31-
"@angular/animations": "^19.2.15",
32-
"@angular/common": "^19.2.15",
33-
"@angular/compiler": "^19.2.15",
34-
"@angular/core": "^19.2.15",
35-
"@angular/forms": "^19.2.15",
36-
"@angular/platform-browser": "^19.2.15",
37-
"@angular/platform-browser-dynamic": "^19.2.15",
38-
"@angular/router": "^19.2.15",
31+
"@angular/animations": "^20.3.6",
32+
"@angular/common": "^20.3.6",
33+
"@angular/compiler": "^20.3.6",
34+
"@angular/core": "^20.3.6",
35+
"@angular/forms": "^20.3.6",
36+
"@angular/platform-browser": "^20.3.6",
37+
"@angular/platform-browser-dynamic": "^20.3.6",
38+
"@angular/router": "^20.3.6",
3939
"@formkit/tempo": "^0.1.2",
4040
"@ng-select/ng-select": "^14.9.0",
4141
"@ngx-translate/core": "^16.0.4",
@@ -56,15 +56,15 @@
5656
"zone.js": "~0.15.1"
5757
},
5858
"devDependencies": {
59-
"@angular-devkit/build-angular": "^19.2.17",
59+
"@angular-devkit/build-angular": "^20.3.6",
6060
"@angular-eslint/builder": "^19.8.1",
6161
"@angular-eslint/eslint-plugin": "^19.8.1",
6262
"@angular-eslint/eslint-plugin-template": "^19.8.1",
6363
"@angular-eslint/schematics": "^19.8.1",
6464
"@angular-eslint/template-parser": "^19.8.1",
65-
"@angular/cli": "^19.2.17",
66-
"@angular/compiler-cli": "^19.2.15",
67-
"@angular/language-service": "^19.2.15",
65+
"@angular/cli": "^20.3.6",
66+
"@angular/compiler-cli": "^20.3.6",
67+
"@angular/language-service": "^20.3.6",
6868
"@faker-js/faker": "^10.0.0",
6969
"@fnando/sparkline": "^0.3.10",
7070
"@popperjs/core": "^2.11.8",

bootstrap5-standalone-with-translate/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"esModuleInterop": true,
77
"sourceMap": true,
88
"declaration": false,
9-
"moduleResolution": "node",
9+
"moduleResolution": "bundler",
1010
"experimentalDecorators": true,
1111
"target": "ES2022",
1212
"typeRoots": [

0 commit comments

Comments
 (0)