vdolek / angular-resize-event

Angular directive for detecting changes of an element size.
MIT License
169 stars 62 forks source link

v3.1 - peerDependencies are creating a conflict #52

Closed DDtMM closed 2 years ago

DDtMM commented 2 years ago

When installing to an angular 13 project I get conflicting per dependencies. In package.json you have:

  "peerDependencies": {
    "@angular/common": "^12.2.0",
    "@angular/core": "^12.2.0"
  },

I believe you want something like:

  "peerDependencies": {
    "@angular/common": ">= 12.2.0 < 14",
    "@angular/core": ">= 12.2.0 < 14"
  },
tmtron commented 2 years ago

same for me (in version 3.1.0) - it seems the peer dependencies in projects/angular-resize-event/package.json have not been updated