dotfiles/files/zshrc/javascript.sh
2018-10-03 18:03:25 +01:00

44 lines
580 B
Bash

# npm aliases
alias ni="npm install"
alias ns="npm start"
alias nt="npm test"
nb() {
if [ $# -eq 0 ]; then
command npm run build
else
for arg in "$@"
do
command npm run build-${arg}
done
fi
}
nw() {
if [ $# -eq 0 ]; then
command npm run watch
else
for arg in "$@"
do
command npm run watch-${arg}
done
fi
}
nr() {
for arg in "$@"
do
command npm run $arg
done
}
alias nrc="npm run coverage"
alias nrm="npm run mocha"
alias nvmu="nvm use"
nvm-init() {
export NVM_DIR="$HOME/.nvm"
source "$NVM_DIR/nvm.sh"
}