In this node ticket they explain that our update script is wrong. We should not use npm update but this instead:
for package in $(npm -g outdated --parseable --depth=0 | cut -d: -f2)
do
npm -g install "$package"
done
Because:
What that does is a bit surprising: without respecting semantic versioning, it updates all the
dependencies of bower (but not bower itself) to the latest available version.
In this node ticket they explain that our update script is wrong. We should not use
npm update
but this instead:Because:
Yep, sad :panda_face: .