generate-changelog: don't break if npm out returns 1, which it normally does on outdated deps, which is all the time

This commit is contained in:
Ronan Jouchet 2021-11-01 15:57:33 -04:00
parent d68078f686
commit 916055d05a
1 changed files with 2 additions and 2 deletions

View File

@ -21,10 +21,10 @@ echo ' - Red upgrades fulfill semver and do *not* need any action'
echo ' - Yellow upgrades *do* need looking at changelogs for breaking changes, and updating package.json'
echo
echo 'CLI:'
npm out
npm out || true
echo
echo 'App:'
cd app && npm out; cd ..
cd app; npm out || true; cd ..
echo
echo 'Okay with this, or care to do/plan a few upgrades?'
echo 'Press any key to continue, or Ctrl+C to abort'