Reputation: 233
I am in a big project with the new team, but I do love to know how to make upgrade this Angular 4 to newest by safe? I am also new in Angular, newest Angular is better than old :D I think so :D
in this project, we have a lot of modules in app.modules.ts, I am afraid if I update things there will break our project,
Does anyone get to suggest to make a safe upgrade?? should I change the syntax also?
Upvotes: 0
Views: 24
Reputation: 4274
You can use the official migration checklist from Angular:
Depending on the size and complexity of your project, the migration can be more or less complex. You should do it anyway in my opinion.
RxJS 6 contains some breaking changes that might be tricky to understand for beginners. Be careful and understand what you are doing.
Upvotes: 1