Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(angular): Add Angular 15 Peer Dependencies #6220

Merged
merged 1 commit into from Nov 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/angular/package.json
Expand Up @@ -15,9 +15,9 @@
"access": "public"
},
"peerDependencies": {
"@angular/common": "10.x || 11.x || 12.x || 13.x || 14.x",
"@angular/core": "10.x || 11.x || 12.x || 13.x || 14.x",
"@angular/router": "10.x || 11.x || 12.x || 13.x || 14.x",
"@angular/common": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aside, maybe it is easier to make this: >= 10 && <= 15? As the list gets longer and longer 😅

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point 😅

"@angular/core": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x",
"@angular/router": "10.x || 11.x || 12.x || 13.x || 14.x || 15.x",
"rxjs": "^6.5.5 || ^7.x"
},
"dependencies": {
Expand Down