1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00

missing listing and versions (#5341)

versions is missing list is missing
This commit is contained in:
Fabián Ríos
2016-09-20 04:58:45 +02:00
committed by Robby Russell
parent cb60cfc7bd
commit 83765bf3f7

View File

@@ -32,6 +32,12 @@ alias npmE='PATH="$(npm bin)":"$PATH"'
# Check which npm modules are outdated
alias npmO="npm outdated"
# Check package versions
alias npmV="npm -v"
# List packages
alias npmL="npm list"
# Run npm start
alias npmst="npm start"