Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

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

* Fix peers
  • Loading branch information
johnhwhite authored Jan 24, 2024
1 parent 587cc67 commit 017e5ff
Show file tree
Hide file tree
Showing 17 changed files with 3,276 additions and 4,464 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
4 changes: 0 additions & 4 deletions .npmrc

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 10.0.0-alpha.0 (2024-01-24)

### ⚠ BREAKING CHANGES

- Dropped support for Angular 16. [#97](https://github.com/blackbaud/skyux-lib-help/pull/97)

### Features

- Added support for Angular 17. [#97](https://github.com/blackbaud/skyux-lib-help/pull/97)

# 9.0.0 (2023-09-14)

### ⚠ BREAKING CHANGES
Expand Down
18 changes: 9 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"projects/help/src/test.ts"
],
"styles": [
"node_modules/@skyux/theme/css/sky.css",
"node_modules/@skyux/theme/css/themes/modern/styles.css"
"@skyux/theme/css/sky.css",
"@skyux/theme/css/themes/modern/styles.css"
],
"polyfills": ["@skyux/packages/polyfills"]
}
Expand Down Expand Up @@ -103,8 +103,8 @@
"projects/help-showcase/src/assets"
],
"styles": [
"node_modules/@skyux/theme/css/sky.css",
"node_modules/@skyux/theme/css/themes/modern/styles.css",
"@skyux/theme/css/sky.css",
"@skyux/theme/css/themes/modern/styles.css",
"projects/help-showcase/src/styles.scss"
],
"scripts": []
Expand Down Expand Up @@ -149,18 +149,18 @@
},
"configurations": {
"production": {
"browserTarget": "help-showcase:build:production"
"buildTarget": "help-showcase:build:production"
},
"development": {
"browserTarget": "help-showcase:build:development"
"buildTarget": "help-showcase:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "help-showcase:build"
"buildTarget": "help-showcase:build"
}
},
"test": {
Expand All @@ -179,8 +179,8 @@
"projects/help-showcase/src/assets"
],
"styles": [
"node_modules/@skyux/theme/css/sky.css",
"node_modules/@skyux/theme/css/themes/modern/styles.css",
"@skyux/theme/css/sky.css",
"@skyux/theme/css/themes/modern/styles.css",
"projects/help-showcase/src/styles.scss"
],
"scripts": []
Expand Down
Loading

0 comments on commit 017e5ff

Please sign in to comment.