Skip to content

Commit

Permalink
Add support for Angular 17 (#271)
Browse files Browse the repository at this point in the history
* Add support for Angular 17

* Update changelog

* Remove `.nx/cache` from git

* Use exact dependencies
  • Loading branch information
johnhwhite authored Jan 30, 2024
1 parent 30c1c5f commit b8ca070
Show file tree
Hide file tree
Showing 6 changed files with 3,432 additions and 4,226 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,4 @@ Thumbs.db

# SKY UX files
.skyux4sourcecode
/.nx/cache
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 10.0.0-alpha.0 (2024-01-30)

### ⚠ BREAKING CHANGES

- Dropped support for Angular 16. [#271](https://github.com/blackbaud/skyux-docs-tools/pull/271)

### Features

- Added support for Angular 17. [#271](https://github.com/blackbaud/skyux-docs-tools/pull/271)

## 9.1.5 (2023-10-09)

- Allow a demo page to be created without the `moduleName` input. [#268](https://github.com/blackbaud/skyux-docs-tools/pull/268)
Expand Down
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,18 +144,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "docs-tools-showcase:build:production"
"buildTarget": "docs-tools-showcase:build:production"
},
"development": {
"browserTarget": "docs-tools-showcase:build:development"
"buildTarget": "docs-tools-showcase:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "docs-tools-showcase:build"
"buildTarget": "docs-tools-showcase:build"
}
},
"test": {
Expand Down
Loading

0 comments on commit b8ca070

Please sign in to comment.