Skip to content

Commit 6e31431

Browse files
committed
chore: merge PR #197 by @vag1830
2 parents f16f45d + dd84d32 commit 6e31431

File tree

10 files changed

+3965
-6469
lines changed

10 files changed

+3965
-6469
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
### [@coreui/angular](https://coreui.io/) changelog
22

3+
##### `v2.17.0`
4+
5+
- update to `Angular 17` - thanks: @vag1830
6+
37
##### `v2.16.1`
48

59
- chore(dependencies): update

CLI.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Angular
22

3-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 16.2.11.
3+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.7.
44

55
## Code scaffolding
66

README.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [@coreui/angular](https://coreui.io/angular)
22

3-
![angular](https://img.shields.io/badge/angular-^16.0.0-lightgrey.svg?style=flat-square&logo=angular)
3+
![angular](https://img.shields.io/badge/angular-^17.3.0-lightgrey.svg?style=flat-square&logo=angular)
44
[![npm package][npm-coreui-angular-badge-v2]][npm-coreui-angular]
55
[![npm package][npm-coreui-angular-badge-latest]][npm-coreui-angular]
66
[![NPM downloads][npm-coreui-angular-download]][npm-coreui-angular]
@@ -11,7 +11,7 @@
1111

1212

1313
[npm-coreui-angular]: https://www.npmjs.com/package/@coreui/angular
14-
[npm-coreui-angular-badge-v2]: https://img.shields.io/npm/v/@coreui/angular/v2-ng16?style=flat-square&color=red
14+
[npm-coreui-angular-badge-v2]: https://img.shields.io/npm/v/@coreui/angular/v2-ng17?style=flat-square&color=red
1515
[npm-coreui-angular-badge-latest]: https://img.shields.io/npm/v/@coreui/angular/latest?style=flat-square&color=red
1616
[npm-coreui-angular-badge-next]: https://img.shields.io/npm/v/@coreui/angular/next?style=flat-square&color=red
1717
[npm-coreui-angular-download]: https://img.shields.io/npm/dm/@coreui/angular.svg?style=flat-square
@@ -51,21 +51,27 @@ CoreUI is an Open Source UI Kit built on top of Bootstrap 4. CoreUI is the faste
5151

5252

5353
#### Prerequisites
54-
Before you begin, make sure your development environment includes `Node.js®` and an `npm` package manager.
54+
Before you begin, make sure your development environment includes the supported version `Typescript` as well as `Node.js®` and an `npm` package manager.
55+
56+
###### Typescript
57+
Angular 17 requires `Typescript` version `^5.2.0`.
58+
59+
- To check your version, run `tsc -v` in a terminal/console window.
60+
- To get `Typescript`, go to [www.typescriptlang.org](https://www.typescriptlang.org/).
5561

5662
###### Node.js
57-
Angular 16 requires `Node.js` version `^16.14.0` or `^18.10.0`.
63+
Angular 17 requires `Node.js` version `^18.13.0` or newer.
5864

5965
- To check your version, run `node -v` in a terminal/console window.
6066
- To get `Node.js`, go to [nodejs.org](https://nodejs.org/).
6167

6268
###### Angular CLI
6369
Install the Angular CLI globally using a terminal/console window.
6470
```bash
65-
npm install -g @angular/cli@16
71+
npm install -g @angular/cli@17
6672
```
6773

68-
##### Update to Angular 16
74+
##### Update to Angular 17
6975
see: [https://update.angular.io](https://update.angular.io)
7076

7177
## Installation
@@ -81,7 +87,7 @@ $ git clone https://github.com/coreui/coreui-angular.git
8187
### NPM
8288

8389
``` bash
84-
$ npm install @coreui/angular --save
90+
$ npm install @coreui/angular@2.17 --save
8591
```
8692

8793
### Yarn

angular.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,18 @@
7373
"builder": "@angular-devkit/build-angular:dev-server",
7474
"configurations": {
7575
"production": {
76-
"browserTarget": "coreui:build:production"
76+
"buildTarget": "coreui:build:production"
7777
},
7878
"development": {
79-
"browserTarget": "coreui:build:development"
79+
"buildTarget": "coreui:build:development"
8080
}
8181
},
8282
"defaultConfiguration": "development"
8383
},
8484
"extract-i18n": {
8585
"builder": "@angular-devkit/build-angular:extract-i18n",
8686
"options": {
87-
"browserTarget": "coreui:build"
87+
"buildTarget": "coreui:build"
8888
}
8989
},
9090
"test": {

0 commit comments

Comments
 (0)