Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 13e8f7d

Browse files
author
Evangelos Barmpas
committedJan 3, 2024
chore: update to Angular 16
1 parent 542dedf commit 13e8f7d

File tree

5 files changed

+4202
-2088
lines changed

5 files changed

+4202
-2088
lines changed
 

‎CLI.md

Lines changed: 1 addition & 1 deletion
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 15.2.0.
3+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 16.2.11.
44

55
## Code scaffolding
66

‎package-lock.json

Lines changed: 4181 additions & 2061 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,24 @@
3131
},
3232
"private": true,
3333
"dependencies": {
34-
"@angular/animations": "^15.2.5",
35-
"@angular/common": "^15.2.5",
36-
"@angular/compiler": "^15.2.5",
37-
"@angular/core": "^15.2.5",
38-
"@angular/forms": "^15.2.5",
39-
"@angular/localize": "^15.2.5",
40-
"@angular/platform-browser": "^15.2.5",
41-
"@angular/platform-browser-dynamic": "^15.2.5",
42-
"@angular/router": "^15.2.5",
34+
"@angular/animations": "^16.2.12",
35+
"@angular/common": "^16.2.12",
36+
"@angular/compiler": "^16.2.12",
37+
"@angular/core": "^16.2.12",
38+
"@angular/forms": "^16.2.12",
39+
"@angular/localize": "^16.2.12",
40+
"@angular/platform-browser": "^16.2.12",
41+
"@angular/platform-browser-dynamic": "^16.2.12",
42+
"@angular/router": "^16.2.12",
4343
"rxjs": "^7.8.0",
4444
"tslib": "^2.3.0",
45-
"zone.js": "~0.12.0"
45+
"zone.js": "~0.13.3"
4646
},
4747
"devDependencies": {
48-
"@angular-devkit/build-angular": "^15.2.4",
49-
"@angular/cli": "^15.2.4",
50-
"@angular/compiler-cli": "^15.2.5",
51-
"@angular/language-service": "^15.2.5",
48+
"@angular-devkit/build-angular": "^16.2.11",
49+
"@angular/cli": "^16.2.11",
50+
"@angular/compiler-cli": "^16.2.12",
51+
"@angular/language-service": "^16.2.12",
5252
"@coreui/coreui": "^2.1.16",
5353
"@types/jasmine": "^4.3.1",
5454
"@types/node": "^18.15.11",
@@ -59,7 +59,7 @@
5959
"karma-coverage": "~2.2.0",
6060
"karma-jasmine": "~5.1.0",
6161
"karma-jasmine-html-reporter": "^2.0.0",
62-
"ng-packagr": "^15.2.2",
62+
"ng-packagr": "^16.2.3",
6363
"ngx-perfect-scrollbar": "^10.1.1",
6464
"protractor": "~7.0.0",
6565
"shelljs": "^0.8.5",

‎projects/coreui-angular/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"tslib": "^2.3.0"
2121
},
2222
"peerDependencies": {
23-
"@angular/common": "^15.0.0",
24-
"@angular/core": "^15.0.0",
25-
"@angular/router": "^15.0.0"
23+
"@angular/common": "^16.0.0",
24+
"@angular/core": "^16.0.0",
25+
"@angular/router": "^16.0.0"
2626
},
2727
"repository": {
2828
"type": "git",
@@ -31,4 +31,4 @@
3131
"bugs": {
3232
"url": "https://github.com/coreui/coreui-angular/issues"
3333
}
34-
}
34+
}

‎src/app/app.module.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@ import { LocationStrategy, HashLocationStrategy } from '@angular/common';
44
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
55

66
import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar';
7-
import { PERFECT_SCROLLBAR_CONFIG } from 'ngx-perfect-scrollbar';
8-
import { PerfectScrollbarConfigInterface } from 'ngx-perfect-scrollbar';
9-
10-
const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = {
11-
suppressScrollX: true
12-
};
137

148
import { AppComponent } from './app.component';
159

@@ -53,6 +47,6 @@ import { AppRoutingModule } from './app.routing';
5347
provide: LocationStrategy,
5448
useClass: HashLocationStrategy
5549
}],
56-
bootstrap: [ AppComponent ]
50+
bootstrap: [AppComponent]
5751
})
5852
export class AppModule { }

0 commit comments

Comments
 (0)
Please sign in to comment.