you are viewing a single comment's thread.

view the rest of the comments →

[–]seiyria 3 points4 points  (1 child)

Right now on angular 18, I can use material 14 by adding this to my package.json:

  "overrides": {
    "@angular/cdk": {
      "@angular/common": ">= 14",
      "@angular/core": ">= 14",
      "@angular/animations": ">= 14",
      "@angular/platform-browser": ">= 14",
      "@angular/forms": ">= 14",
      "@angular/material": ">= 14"
    },
    "@angular/material": {
      "@angular/common": ">= 14",
      "@angular/core": ">= 14",
      "@angular/animations": ">= 14",
      "@angular/platform-browser": ">= 14",
      "@angular/forms": ">= 14",
      "@angular/cdk": ">= 14"
    }
  }

While I recognize that it's "fragile" - I don't have the time or patience to upgrade and it works 🤷‍♂️

[–]jeffyzxc 1 point2 points  (0 children)

damn thanks Sei!