#!/bin/bash
find ~/env/dev -maxdepth 1 -type d -exec sh -c "cd {}; npm ls $1 --prod --depth=0 && git checkout -b update-$1 && npm install -S $1@latest && git commit package.json -m $1@latest && git push origin update-$1" \;
