Skip to content

Commit fc67c7c

Browse files
committedJun 3, 2019
Ship: v2.5.0 for Angular 8
1 parent 2c03066 commit fc67c7c

File tree

272 files changed

+5152
-1143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

272 files changed

+5152
-1143
lines changed
 

‎CHANGELOG.md

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

3+
##### `v2.5.0`
4+
- chore: upgrade to Angular 8.0 - thanks @dennisameling
5+
- chore: move browserslist file
6+
- chore(tslint): cleanup unused/deprecated rules
7+
- chore(tsconfig): target update
8+
9+
###### dependencies update
10+
- update `@angular/animations` to `^8.0.0`
11+
- update `@angular/common` to `^8.0.0`
12+
- update `@angular/compiler` to `^8.0.0`
13+
- update `@angular/core` to `^8.0.0`
14+
- update `@angular/forms` to `^8.0.0`
15+
- update `@angular/platform-browser` to `^8.0.0`
16+
- update `@angular/platform-browser-dynamic` to `^8.0.0`
17+
- update `@angular/router` to `^8.0.0`
18+
- update `core-js` to `^2.6.9`
19+
- update `rxjs` to `^6.5.2`
20+
- update `zone.js` to `~0.9.1`
21+
- update `@angular-devkit/build-angular` to `~0.800.1`
22+
- update `@angular-devkit/build-ng-packagr` to `~0.800.1`
23+
- update `@angular/cli` to `^8.0.1`
24+
- update `@angular/compiler-cli` to `^8.0.0`
25+
- update `@angular/language-service` to `^8.0.0`
26+
- update `@types/jasmine` to `^3.3.13`
27+
- update `@types/node` to `^11.13.13`
28+
- update `codelyzer` to `^5.0.1`
29+
- update `jasmine-core` to `~3.4.0`
30+
- update `ng-packagr` to `^5.2.0`
31+
- update `tsickle` to `^0.35.0`
32+
- update `typescript` to `~3.4.5`
33+
334
##### `v2.4.5`
435
- chore(readme): npm badges
536
- chore(readme): prerequisites

‎README.md

+21-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![@coreui coreui](https://img.shields.io/badge/@coreui%20-coreui-lightgrey.svg?style=flat-square)](https://github.com/coreui/coreui)
99
[![npm package][npm-coreui-badge]][npm-coreui]
1010
[![NPM downloads][npm-coreui-download]][npm-coreui]
11-
![angular](https://img.shields.io/badge/angular-^7.2.10-lightgrey.svg?style=flat-square)
11+
![angular](https://img.shields.io/badge/angular-^8.0.0-lightgrey.svg?style=flat-square)
1212

1313
[npm-coreui-angular]: https://www.npmjs.com/package/@coreui/angular
1414
[npm-coreui-angular-badge]: https://img.shields.io/npm/v/@coreui/angular.png?style=flat-square
@@ -30,7 +30,8 @@ CoreUI is an Open Source UI Kit built on top of Bootstrap 4. CoreUI is the faste
3030

3131
* [Templates](#templates)
3232
* [Admin Templates built on top of CoreUI Pro](#admin-templates-built-on-top-of-coreui-pro)
33-
* [Installation](#installation)
33+
* [Prerequisites](#prerequisites)
34+
* [Installation](#coreui-installation)
3435
* [Usage](#usage)
3536
* [What's included](#whats-included)
3637
* [Documentation](#documentation)
@@ -52,8 +53,25 @@ CoreUI is an Open Source UI Kit built on top of Bootstrap 4. CoreUI is the faste
5253
| --- | --- | --- | --- | --- |
5354
| [![CoreUI Pro Admin Template](https://coreui.io/assets/img/example-coureui.jpg)](https://coreui.io/pro/angular/)| [![Prime Admin Template](https://coreui.io/assets/img/responsive-prime.png)](https://coreui.io/admin-templates/angular/prime/?support=1)| [![Root Admin Template](https://coreui.io/assets/img/responsive-root.png)](https://coreui.io/admin-templates/angular/root/?support=1)| [![Alba Admin Template](https://coreui.io/assets/img/responsive-alba.png)](https://coreui.io/admin-templates/angular/alba/?support=1)| [![Leaf Admin Template](https://coreui.io/assets/img/responsive-leaf.png)](https://coreui.io/admin-templates/angular/leaf/?support=1)
5455

56+
#### Prerequisites
57+
Before you begin, make sure your development environment includes `Node.js®` and an `npm` package manager.
5558

56-
## Installation
59+
###### Node.js
60+
Angular 8 requires `Node.js` version 12.x
61+
62+
- To check your version, run `node -v` in a terminal/console window.
63+
- To get `Node.js`, go to [nodejs.org](https://nodejs.org/).
64+
65+
###### Angular CLI
66+
Install the Angular CLI globally using a terminal/console window.
67+
```bash
68+
npm install -g @angular/cli
69+
```
70+
71+
##### Update to Angular 8
72+
see: [https://update.angular.io](https://update.angular.io)
73+
74+
## CoreUI Installation
5775

5876
Several options are available:
5977

0 commit comments

Comments
 (0)
Please sign in to comment.