Skip to content

Commit af91baa

Browse files
authored
Merge pull request #569 from aspnetboilerplate/update-to-angular-11
Update to angular 11
2 parents 470ba8b + 132e84e commit af91baa

File tree

4 files changed

+837
-780
lines changed

4 files changed

+837
-780
lines changed

angular/angular.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
"optimization": true,
6363
"outputHashing": "all",
6464
"sourceMap": false,
65-
"extractCss": true,
6665
"namedChunks": false,
6766
"aot": true,
6867
"extractLicenses": true,

angular/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"test": "ng test"
1414
},
1515
"dependencies": {
16-
"@angular/animations": "^10.2.1",
17-
"@angular/common": "^10.2.1",
18-
"@angular/compiler": "^10.2.1",
19-
"@angular/core": "^10.2.1",
20-
"@angular/forms": "^10.2.1",
21-
"@angular/platform-browser": "^10.2.1",
22-
"@angular/platform-browser-dynamic": "^10.2.1",
23-
"@angular/router": "^10.2.1",
16+
"@angular/animations": "^11.0.2",
17+
"@angular/common": "^11.0.2",
18+
"@angular/compiler": "^11.0.2",
19+
"@angular/core": "^11.0.2",
20+
"@angular/forms": "^11.0.2",
21+
"@angular/platform-browser": "^11.0.2",
22+
"@angular/platform-browser-dynamic": "^11.0.2",
23+
"@angular/router": "^11.0.2",
2424
"@aspnet/signalr": "^1.1.4",
2525
"@fortawesome/fontawesome-free": "^5.13.0",
2626
"abp-ng2-module": "^6.2.0",
@@ -42,18 +42,18 @@
4242
"zone.js": "~0.10.2"
4343
},
4444
"devDependencies": {
45-
"@angular-devkit/build-angular": "~0.1002.0",
46-
"@angular/cli": "^10.2.0",
47-
"@angular/compiler-cli": "^10.2.1",
45+
"@angular-devkit/build-angular": "~0.1100.2",
46+
"@angular/cli": "^11.0.2",
47+
"@angular/compiler-cli": "^11.0.2",
4848
"@angularclass/hmr": "^2.1.3",
49-
"@types/jasmine": "^3.4.0",
49+
"@types/jasmine": "~3.6.0",
5050
"@types/lodash-es": "^4.17.3",
5151
"@types/moment-timezone": "^0.5.12",
5252
"@types/node": "^13.13.4",
53-
"codelyzer": "^5.1.2",
54-
"jasmine-core": "~3.5.0",
53+
"codelyzer": "^6.0.0",
54+
"jasmine-core": "~3.6.0",
5555
"jasmine-spec-reporter": "~5.0.0",
56-
"karma": "~5.0.0",
56+
"karma": "~5.1.1",
5757
"karma-chrome-launcher": "~3.1.0",
5858
"karma-cli": "^2.0.0",
5959
"karma-coverage-istanbul-reporter": "~3.0.2",

angular/src/root-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const routes: Routes = [
1616
];
1717

1818
@NgModule({
19-
imports: [RouterModule.forRoot(routes)],
19+
imports: [RouterModule.forRoot(routes, { relativeLinkResolution: 'legacy' })],
2020
exports: [RouterModule],
2121
providers: []
2222
})

0 commit comments

Comments
 (0)