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

Add support for Angular 17 #97

Merged
merged 2 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading