Skip to content

Commit 5d6dee3

Browse files
authored
Merge pull request #50 from rars/update-angular
Update to angular 17
2 parents 1101da1 + 467e114 commit 5d6dee3

File tree

8 files changed

+4648
-3801
lines changed

8 files changed

+4648
-3801
lines changed

.github/workflows/node.js.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,17 @@ name: Node.js CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
7+
branches: [main]
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
1312

1413
strategy:
1514
matrix:
16-
node-version: [16.x, 18.x]
15+
node-version: [18.x, 20.x]
1716

1817
steps:
1918
- uses: actions/checkout@v3

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ speed-measure-plugin*.json
3333

3434
# misc
3535
/.angular/cache
36+
/.nx/cache
3637
/.sass-cache
3738
/connect.lock
3839
/coverage

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [6.0.0](https://github.com/rars/ngx-diff/compare/v5.0.0...v6.0.0) (2023-11-08)
6+
7+
8+
### Features
9+
10+
* **ngx-diff:** update to Angular 17 ([0080aad](https://github.com/rars/ngx-diff/commit/0080aad4c391443ed368c07f508e51c7bc740576))
11+
512
## [5.0.0](https://github.com/rars/ngx-diff/compare/v4.0.0...v5.0.0) (2023-05-07)
613

714
### Features

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ It is recommended to use these settings rather than attempt to override styles b
105105
| 14 | 3.0.0 |
106106
| 15 | 4.0.0 |
107107
| 16 | 5.0.0 |
108+
| 17 | 6.0.0 |
108109

109110
## Contributions welcome!
110111

angular.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,18 @@
6666
"serve": {
6767
"builder": "@angular-devkit/build-angular:dev-server",
6868
"options": {
69-
"browserTarget": "ngx-diff-demo:build"
69+
"buildTarget": "ngx-diff-demo:build"
7070
},
7171
"configurations": {
7272
"production": {
73-
"browserTarget": "ngx-diff-demo:build:production"
73+
"buildTarget": "ngx-diff-demo:build:production"
7474
}
7575
}
7676
},
7777
"extract-i18n": {
7878
"builder": "@angular-devkit/build-angular:extract-i18n",
7979
"options": {
80-
"browserTarget": "ngx-diff-demo:build"
80+
"buildTarget": "ngx-diff-demo:build"
8181
}
8282
},
8383
"test": {

0 commit comments

Comments
 (0)