You wrote in your release that version 5 is adjusted for Angular 12, but in your library's package.json there are still the peer dependencies for Angular 10.
"peerDependencies": {
"@angular/common": "^10.0.0",
"@angular/core": "^10.0.0"
}
Shouldn't it be
"peerDependencies": {
"@angular/common": "^12.0.0",
"@angular/core": "^12.0.0"
}
?
You wrote in your release that version 5 is adjusted for Angular 12, but in your library's package.json there are still the peer dependencies for Angular 10.
Shouldn't it be
?