Skip to content

Commit

Permalink
fix: update Angular peer dependencies to version 11 (#2843)
Browse files Browse the repository at this point in the history
Closes #2842 

BREAKING CHANGE:

Angular peer dependency versions are bumped to latest major (11)

BEFORE:

Minimum Angular peer dependency version is ^10.0.0

AFTER:

Minimum Angular peer dependency version is ^11.0.0
  • Loading branch information
brandonroberts authored Dec 28, 2020
1 parent a2ab8be commit f63d281
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion modules/component-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@angular/core": "^10.0.0",
"@angular/core": "^11.0.0",
"rxjs": "^6.5.3"
},
"schematics": "./schematics/collection.json",
Expand Down
4 changes: 2 additions & 2 deletions modules/component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
},
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@angular/common": "^10.0.0",
"@angular/core": "^10.0.0",
"@angular/common": "^11.0.0",
"@angular/core": "^11.0.0",
"rxjs": "^6.5.3"
},
"schematics": "./schematics/collection.json",
Expand Down
4 changes: 2 additions & 2 deletions modules/data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
},
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@angular/common": "^10.0.0",
"@angular/core": "^10.0.0",
"@angular/common": "^11.0.0",
"@angular/core": "^11.0.0",
"@ngrx/store": "11.0.0-beta.0",
"@ngrx/effects": "11.0.0-beta.0",
"@ngrx/entity": "11.0.0-beta.0",
Expand Down
2 changes: 1 addition & 1 deletion modules/effects/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@angular/core": "^10.0.0",
"@angular/core": "^11.0.0",
"@ngrx/store": "11.0.0-beta.0",
"rxjs": "^6.5.3"
},
Expand Down
2 changes: 1 addition & 1 deletion modules/entity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@angular/core": "^10.0.0",
"@angular/core": "^11.0.0",
"@ngrx/store": "11.0.0-beta.0",
"rxjs": "^6.5.3"
},
Expand Down
6 changes: 3 additions & 3 deletions modules/router-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
},
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@angular/common": "^10.0.0",
"@angular/core": "^10.0.0",
"@angular/router": "^10.0.0",
"@angular/common": "^11.0.0",
"@angular/core": "^11.0.0",
"@angular/router": "^11.0.0",
"@ngrx/store": "11.0.0-beta.0",
"rxjs": "^6.5.3"
},
Expand Down
2 changes: 1 addition & 1 deletion modules/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"homepage": "https://github.com/ngrx/platform#readme",
"peerDependencies": {
"@angular/core": "^10.0.0",
"@angular/core": "^11.0.0",
"rxjs": "^6.5.3"
},
"schematics": "./schematics/collection.json",
Expand Down

0 comments on commit f63d281

Please sign in to comment.