33

I encountered following the error whilst updating from angular 8 to 9 and running

ng update @angular/material:

Package "@angular/flex-layout" has an incompatible peer dependency to "@angular/cdk" (requires "^8.0.0-rc.0", would install "9.0.0").

2 Answers 2

65

You have to update both dependencies at the same time. Had the same issue when only updating one at a time.

ng update @angular/material @angular/flex-layout

Hope this helps.

Sign up to request clarification or add additional context in comments.

Comments

12

Fixed by:

npm uninstall @angular/flex-layout

ng update @angular/material

npm install @angular/flex-layout

1 Comment

Thanks, the update went because of your post although it was a bit tough;)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.