Files
kymsu2/_npm.sh
Bruno 21 e08f24727c First commit
Plugins:
-npm (Javascript)
-mas (MacAppstore)
-pip (Python 3)
-homebrew (and casks)
2018-03-11 15:53:53 +01:00

12 lines
241 B
Bash
Executable File

#!/usr/bin/env bash
# npm plugin for KYMSU (install local package)
# https://github.com/welcoMattic/kymsu
echo " 🌿 npm"
cd /Users/bruno/Sites/node_modules/
npm ls
npm outdated
npm outdated | awk '{print $1}' | xargs npm update
echo ""