Skip to content

Commit f4252e6

Browse files
author
Dirk Luijk
committed
feat: add support for Angular 17
1 parent 2825f6c commit f4252e6

File tree

5 files changed

+3449
-2483
lines changed

5 files changed

+3449
-2483
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v2
2020
- uses: actions/setup-node@v2
2121
with:
22-
node-version: '16'
22+
node-version: '18'
2323
cache: 'yarn'
2424
- run: yarn
2525
- run: yarn lint

angular.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,18 +97,18 @@
9797
"serve": {
9898
"builder": "@angular-devkit/build-angular:dev-server",
9999
"options": {
100-
"browserTarget": "demo:build"
100+
"buildTarget": "demo:build"
101101
},
102102
"configurations": {
103103
"production": {
104-
"browserTarget": "demo:build:production"
104+
"buildTarget": "demo:build:production"
105105
}
106106
}
107107
},
108108
"extract-i18n": {
109109
"builder": "@angular-devkit/build-angular:extract-i18n",
110110
"options": {
111-
"browserTarget": "demo:build"
111+
"buildTarget": "demo:build"
112112
}
113113
}
114114
}

package.json

+26-26
Original file line numberDiff line numberDiff line change
@@ -27,45 +27,45 @@
2727
},
2828
"private": false,
2929
"dependencies": {
30-
"@angular/animations": "^16.0.4",
31-
"@angular/common": "^16.0.4",
32-
"@angular/compiler": "^16.0.4",
33-
"@angular/core": "^16.0.4",
34-
"@angular/forms": "^16.0.4",
35-
"@angular/platform-browser": "^16.0.4",
36-
"@angular/platform-browser-dynamic": "^16.0.4",
37-
"@angular/router": "^16.0.4",
30+
"@angular/animations": "^17.0.8",
31+
"@angular/common": "^17.0.8",
32+
"@angular/compiler": "^17.0.8",
33+
"@angular/core": "^17.0.8",
34+
"@angular/forms": "^17.0.8",
35+
"@angular/platform-browser": "^17.0.8",
36+
"@angular/platform-browser-dynamic": "^17.0.8",
37+
"@angular/router": "^17.0.8",
3838
"rxjs": "~7.8.1",
3939
"rxjs-etc": "^10.6.2",
40-
"tslib": "^2.5.3",
41-
"zone.js": "~0.13.0"
40+
"tslib": "^2.6.2",
41+
"zone.js": "~0.14.2"
4242
},
4343
"devDependencies": {
44-
"@angular-builders/jest": "^16.0.0",
45-
"@angular-devkit/build-angular": "^16.0.4",
46-
"@angular/cli": "^16.0.4",
47-
"@angular/compiler-cli": "^16.0.4",
48-
"@angular/language-service": "^16.0.4",
49-
"@commitlint/cli": "^17.6.5",
50-
"@commitlint/config-conventional": "^17.6.5",
44+
"@angular-builders/jest": "^17.0.0",
45+
"@angular-devkit/build-angular": "^17.0.9",
46+
"@angular/cli": "^17.0.9",
47+
"@angular/compiler-cli": "^17.0.8",
48+
"@angular/language-service": "^17.0.8",
49+
"@commitlint/cli": "^18.4.4",
50+
"@commitlint/config-conventional": "^18.4.4",
5151
"@dirkluijk/observable-matchers": "^0.3.2",
5252
"@dscheerens/tslint-presets": "^9.0.0",
53-
"@ngneat/spectator": "^15.0.0",
54-
"@types/jest": "^29.5.2",
55-
"@types/node": "^20.2.5",
56-
"all-contributors-cli": "^6.26.0",
53+
"@ngneat/spectator": "^16.0.0",
54+
"@types/jest": "^29.5.11",
55+
"@types/node": "^20.10.6",
56+
"all-contributors-cli": "^6.26.1",
5757
"codelyzer": "^6.0.2",
5858
"commitizen": "^4.3.0",
5959
"cz-conventional-changelog": "^3.3.0",
6060
"husky": "^8.0.0",
61-
"jest": "^29.5.0",
62-
"jest-jasmine2": "^29.5.0",
63-
"ng-packagr": "^16.0.1",
61+
"jest": "^29.7.0",
62+
"jest-jasmine2": "^29.7.0",
63+
"ng-packagr": "^17.0.3",
6464
"pinst": "^3.0.0",
6565
"standard-version": "^9.5.0",
66-
"ts-node": "~10.9.1",
66+
"ts-node": "~10.9.2",
6767
"tslint": "~6.1.0",
68-
"typescript": "~4.9.5"
68+
"typescript": "~5.2.2"
6969
},
7070
"config": {
7171
"commitizen": {

projects/breadcrumpy/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"license": "MIT",
1111
"private": false,
1212
"peerDependencies": {
13-
"@angular/core": "^16.0.0",
14-
"@angular/router": "^16.0.0",
13+
"@angular/core": "^17.0.0",
14+
"@angular/router": "^17.0.0",
1515
"rxjs": "^7.0.0",
1616
"rxjs-etc": "^10.0.0"
1717
}

0 commit comments

Comments
 (0)