Skip to content

Commit b7fb42a

Browse files
committed
Update to Angular v17
1 parent a984530 commit b7fb42a

File tree

15 files changed

+3491
-2710
lines changed

15 files changed

+3491
-2710
lines changed

.prettierrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"tabWidth": 2,
3+
"useTabs": false,
4+
"semi": false,
5+
"trailingComma": "es5",
6+
"bracketSpacing": true,
7+
"arrowParens": "avoid",
8+
"printWidth": 120
9+
}

.vscode/launch.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
"version": "0.2.0",
44
"configurations": [
55
{
6-
"name": "ng serve",
76
"type": "firefox",
87
"request": "launch",
9-
"preLaunchTask": "npm: start",
10-
"url": "http://localhost:4200/"
8+
"name": "ng serve",
9+
"url": "http://localhost:4200/",
10+
"preLaunchTask": "npm: start:dev",
11+
"webRoot": "${workspaceFolder}"
1112
},
1213
{
1314
"name": "ng test",

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"tasks": [
55
{
66
"type": "npm",
7-
"script": "start",
7+
"script": "start:dev",
88
"isBackground": true,
99
"problemMatcher": {
1010
"owner": "typescript",

angular.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,21 +107,21 @@
107107
"builder": "@angular-devkit/build-angular:dev-server",
108108
"configurations": {
109109
"production": {
110-
"browserTarget": "reprogleorg:build:production"
110+
"buildTarget": "reprogleorg:build:production"
111111
},
112112
"development": {
113-
"browserTarget": "reprogleorg:build:development"
113+
"buildTarget": "reprogleorg:build:development"
114114
},
115115
"test": {
116-
"browserTarget": "reprogleorg:build:test"
116+
"buildTarget": "reprogleorg:build:test"
117117
}
118118
},
119119
"defaultConfiguration": "development"
120120
},
121121
"extract-i18n": {
122122
"builder": "@angular-devkit/build-angular:extract-i18n",
123123
"options": {
124-
"browserTarget": "reprogleorg:build"
124+
"buildTarget": "reprogleorg:build"
125125
}
126126
},
127127
"lint": {
@@ -184,4 +184,4 @@
184184
}
185185
}
186186
}
187-
}
187+
}

package.json

Lines changed: 34 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -16,51 +16,50 @@
1616
},
1717
"private": true,
1818
"dependencies": {
19-
"@angular/animations": "^16.0.0",
20-
"@angular/cdk": "16.1.5",
21-
"@angular/common": "^16.0.0",
22-
"@angular/compiler": "^16.0.0",
23-
"@angular/core": "^16.0.0",
24-
"@angular/fire": "7.6.1",
25-
"@angular/forms": "^16.0.0",
26-
"@angular/platform-browser": "^16.0.0",
27-
"@angular/platform-browser-dynamic": "^16.0.0",
28-
"@angular/router": "^16.0.0",
29-
"@types/express": "^4.17.17",
30-
"marked": "^5.0.0",
19+
"@angular/animations": "^17.0.2",
20+
"@angular/cdk": "17.0.0",
21+
"@angular/common": "^17.0.2",
22+
"@angular/compiler": "^17.0.2",
23+
"@angular/core": "^17.0.2",
24+
"@angular/fire": "16.0.0",
25+
"@angular/forms": "^17.0.2",
26+
"@angular/platform-browser": "^17.0.2",
27+
"@angular/platform-browser-dynamic": "^17.0.2",
28+
"@angular/router": "^17.0.2",
29+
"@types/express": "^4.17.21",
30+
"marked": "^10.0.0",
3131
"ngx-google-analytics": "^14.0.1",
32-
"ngx-markdown": "^16.0.0",
32+
"ngx-markdown": "^17.0.0",
3333
"ngx-turnstile": "^0.0.7",
3434
"prismjs": "^1.29.0",
3535
"rxjs": "~7.8.1",
36-
"tslib": "^2.5.0",
37-
"zone.js": "~0.13.0"
36+
"tslib": "^2.6.2",
37+
"zone.js": "~0.14.2"
3838
},
3939
"devDependencies": {
40-
"@angular-devkit/build-angular": "^16.1.3",
41-
"@angular-eslint/builder": "16.1.0",
42-
"@angular-eslint/eslint-plugin": "16.1.0",
43-
"@angular-eslint/eslint-plugin-template": "16.1.0",
44-
"@angular-eslint/schematics": "16.1.0",
45-
"@angular-eslint/template-parser": "16.1.0",
46-
"@angular/cli": "16.1.5",
47-
"@angular/compiler-cli": "^16.0.0",
48-
"@cypress/schematic": "2.5.0",
49-
"@types/marked": "^5.0.0",
50-
"@types/node": "^18.16.3",
51-
"@typescript-eslint/eslint-plugin": "^6.0.0",
52-
"@typescript-eslint/parser": "^6.0.0",
53-
"autoprefixer": "^10.4.14",
54-
"cypress": "^12.11.0",
55-
"eslint": "^8.39.0",
56-
"postcss": "^8.4.23",
57-
"tailwindcss": "^3.3.2",
40+
"@angular-devkit/build-angular": "^17.0.0",
41+
"@angular-eslint/builder": "17.0.1",
42+
"@angular-eslint/eslint-plugin": "17.0.1",
43+
"@angular-eslint/eslint-plugin-template": "17.0.1",
44+
"@angular-eslint/schematics": "17.0.1",
45+
"@angular-eslint/template-parser": "17.0.1",
46+
"@angular/cli": "17.0.0",
47+
"@angular/compiler-cli": "^17.0.2",
48+
"@cypress/schematic": "2.5.1",
49+
"@types/node": "^20.9.0",
50+
"@typescript-eslint/eslint-plugin": "^6.10.0",
51+
"@typescript-eslint/parser": "^6.10.0",
52+
"autoprefixer": "^10.4.16",
53+
"cypress": "^13.5.0",
54+
"eslint": "^8.53.0",
55+
"postcss": "^8.4.31",
56+
"tailwindcss": "^3.3.5",
5857
"ts-node": "^10.9.1",
59-
"typescript": "~5.0.4"
58+
"typescript": "~5.2.2"
6059
},
6160
"pnpm": {
6261
"overrides": {
6362
"rxfire>tslib": "^2.3.1"
6463
}
6564
}
66-
}
65+
}

0 commit comments

Comments
 (0)