dotfiles/modules/shell/files/javascript.sh

42 lines
595 B
Bash
Raw Normal View History

2016-09-12 15:52:11 +01:00
# 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
}
2016-11-19 23:06:01 +00:00
nw() {
if [ $# -eq 0 ]; then
command npm run watch
else
for arg in "$@"
do
command npm run watch-${arg}
done
fi
}
2016-09-12 15:52:11 +01:00
nr() {
for arg in "$@"
do
command npm run $arg
done
}
alias nrc="npm run coverage"
alias nrm="npm run mocha"
alias nvmu="nvm use"
# React-native extras
alias rnl="adb logcat | grep ReactNative"
2016-11-14 14:14:47 +00:00
alias rn="react-native"