Skip to content

Commit

Permalink
fix: peer dependencies in packages
Browse files Browse the repository at this point in the history
Angular 15 support was originaly introduced
in [this pull-request](#404),
but the footer didn't match the `semantic-release` requirements.

BREAKING CHANGE: this will require `@angular/core@^15.0.0`!
  • Loading branch information
bbortt committed Nov 30, 2022
1 parent b822dd7 commit 4ddc628
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions projects/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"peerDependencies": {
"@angular/cdk": "^15.0.0",
"@angular/common": "^15.0.1",
"@angular/core": "^15.0.1",
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/material": "^15.0.0"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions projects/moment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"license": "MIT",
"peerDependencies": {
"@angular/cdk": "^15.0.0",
"@angular/common": "^15.0.1",
"@angular/core": "^15.0.1",
"@angular/common": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/material": "^15.0.0",
"@angular/material-moment-adapter": "^15.0.0",
"@mat-datetimepicker/core": "^11.0.0"
Expand Down

0 comments on commit 4ddc628

Please sign in to comment.