hoodiehq-archive / my-first-hoodie

⛔ deprecated
Other
157 stars 35 forks source link

Updating a Hoodie app #67

Closed andru closed 10 years ago

andru commented 10 years ago

What's the process for updating a Hoodie app? The last time I did this I just manually updated the version numbers in package.json and ran npm update, but I figure there must be a more automagic way than hunting down the latest release numbers for each package?

janl commented 10 years ago

hah, excellent question. And sorry to disappoint, while we do like the automatic, that particular one, we haven’t managed yet. To update, make sure to update the version numbers of hoodie-server hoodie-plugin-users and all other hoodie-plugin-* you may have installed.

boennemann commented 10 years ago

npm offers some magic like npm outdated and there's also david to update every package. Maybe that helps a bit :)

andru commented 10 years ago

Sweet. Thanks for the npm outdated tip, you just made my life a little bit more awesome.

boennemann commented 10 years ago

@andru ☺️ but I guess your life got even more awesome: npm outdated --depth 0 | grep hoodie | sed '1d' | awk '{print $1"@"$3}' | xargs npm i -S

:)