Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update angular 17 #197

Merged
merged 2 commits into from
May 21, 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
### [@coreui/angular](https://coreui.io/) changelog

##### `v2.17.0`

- update to `Angular 17`

##### `v2.16.0`

- update to `Angular 16` - thanks: @vag1830
Expand Down
2 changes: 1 addition & 1 deletion CLI.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Angular

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

## Code scaffolding

Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [@coreui/angular](https://coreui.io/angular)

![angular](https://img.shields.io/badge/angular-^16.0.0-lightgrey.svg?style=flat-square&logo=angular)
![angular](https://img.shields.io/badge/angular-^17.0.0-lightgrey.svg?style=flat-square&logo=angular)
[![npm package][npm-coreui-angular-badge-v2]][npm-coreui-angular]
[![npm package][npm-coreui-angular-badge-latest]][npm-coreui-angular]
[![NPM downloads][npm-coreui-angular-download]][npm-coreui-angular]
Expand Down Expand Up @@ -51,21 +51,27 @@ CoreUI is an Open Source UI Kit built on top of Bootstrap 4. CoreUI is the faste


#### Prerequisites
Before you begin, make sure your development environment includes `Node.js®` and an `npm` package manager.
Before you begin, make sure your development environment includes the supported version `Typescript` as well as `Node.js®` and an `npm` package manager.

###### Typescript
Angular 17 requires `Typescript` version `^5.2.0`.

- To check your version, run `tsc -v` in a terminal/console window.
- To get `Typescript`, go to [www.typescriptlang.org](https://www.typescriptlang.org/).

###### Node.js
Angular 16 requires `Node.js` version `^16.14.0` or `^18.10.0`.
Angular 17 requires `Node.js` version `^18.13.0`.

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

###### Angular CLI
Install the Angular CLI globally using a terminal/console window.
```bash
npm install -g @angular/cli@16
npm install -g @angular/cli@17
```

##### Update to Angular 16
##### Update to Angular 17
see: [https://update.angular.io](https://update.angular.io)

## Installation
Expand Down
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "coreui:build:production"
"buildTarget": "coreui:build:production"
},
"development": {
"browserTarget": "coreui:build:development"
"buildTarget": "coreui:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "coreui:build"
"buildTarget": "coreui:build"
}
},
"test": {
Expand Down
Loading