Skip to content

Commit 0919a5e

Browse files
committed
Ship v2.11.1
1 parent e2ebcf6 commit 0919a5e

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
## [CoreUI for Angular](./README.md) version `changelog`
22

3+
###### `v2.11.1`
4+
5+
- chore: update to `Angular 11.1`
6+
7+
###### dependencies update
8+
"@angular/animations": "^11.1.0",
9+
"@angular/cdk": "^11.1.0",
10+
"@angular/common": "^11.1.0",
11+
"@angular/compiler": "^11.1.0",
12+
"@angular/core": "^11.1.0",
13+
"@angular/forms": "^11.1.0",
14+
"@angular/localize": "^11.1.0",
15+
"@angular/platform-browser": "^11.1.0",
16+
"@angular/platform-browser-dynamic": "^11.1.0",
17+
"@angular/router": "^11.1.0",
18+
"@coreui/angular": "~2.11.1",
19+
"bootstrap": "^4.6.0",
20+
"core-js": "^3.8.3",
21+
"@angular-devkit/build-angular": "^0.1101.1",
22+
"@angular/cli": "^11.1.1",
23+
"@angular/compiler-cli": "^11.1.0",
24+
"@angular/language-service": "^11.1.0",
25+
"@types/jasmine": "^3.6.3",
26+
"@types/node": "^14.14.22",
27+
328
###### `v2.11.0`
429

530
- chore: update to `Angular 11` and `TypeScript 4`

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-angular-admin-template",
3-
"version": "2.11.0",
3+
"version": "2.11.1",
44
"description": "CoreUI Free Angular 11 Admin Template",
55
"author": {
66
"name": "Łukasz Holeczek",
@@ -21,7 +21,7 @@
2121
"ng": "ng",
2222
"postinstall": "ngcc --properties es2015 browser module main --first-only",
2323
"start": "ng serve",
24-
"build": "ng build --prod --aot --buildOptimizer --commonChunk --vendorChunk --optimization --progress",
24+
"build": "ng build --prod --aot --build-optimizer --common-chunk --vendor-chunk --optimization --progress",
2525
"test": "ng test",
2626
"lint": "ng lint",
2727
"e2e": "ng e2e"

src/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!doctype html>
22
<!--
33
* CoreUI - Free Angular 11 Admin Template
4-
* @version v2.11.0
4+
* @version v2.11.1
55
* @link https://coreui.io/angular/
66
* Copyright (c) 2017-2021 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/polyfills.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import 'core-js';
3434
* Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
3535
* Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
3636
*/
37-
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
37+
import 'web-animations-js'; // Run `npm install --save web-animations-js`.
3838

3939
/**
4040
* By default, zone.js will patch all possible macroTask and DomEvents
@@ -69,3 +69,4 @@ import 'zone.js/dist/zone'; // Included with Angular CLI.
6969
/***************************************************************************************************
7070
* APPLICATION IMPORTS
7171
*/
72+
(window as any).global = window;

0 commit comments

Comments
 (0)