Which command updates an Angular application to the next major version with automatic migrations?
- A npm update
- B ng update
- C ng upgrade
- D ng migrate
Answer
ng update
ng update runs schematics that rewrite most breaking changes, but only for a single major version step at a time.





