The command npm-check-update
displays mayor updates in red. This can be already seen in the first image of the documentaton.
But is there a way to exclude these breaking changes from the automatic update? I do not find a parameter for that.
npm-check-updates (npm ncu): avoid breaking updates
2.6k views Asked by BaluJr. At
2
It is actually in the readme file:
So, just do a
ncu -t minor -u
to leave major version updates out (those that are most likely to break things).