Add npm and yarn checks
This commit is contained in:
@@ -11,6 +11,7 @@ alias eal="nvim ~/.bash_aliasrc"
|
|||||||
alias ev="edit_editor_config"
|
alias ev="edit_editor_config"
|
||||||
|
|
||||||
# Navigation
|
# Navigation
|
||||||
|
|
||||||
alias ..="cd .."
|
alias ..="cd .."
|
||||||
alias .2="cd ../.."
|
alias .2="cd ../.."
|
||||||
alias .3="cd ../../.."
|
alias .3="cd ../../.."
|
||||||
@@ -72,3 +73,33 @@ alias r="R"
|
|||||||
alias azerty="setxkbmap be"
|
alias azerty="setxkbmap be"
|
||||||
alias qwerty="setxkbmap us"
|
alias qwerty="setxkbmap us"
|
||||||
alias cole="setxkbmap us -variant colemak"
|
alias cole="setxkbmap us -variant colemak"
|
||||||
|
|
||||||
|
yarn() {
|
||||||
|
if [[ -f "package-lock.json" ]]; then
|
||||||
|
echo "WARNING: package-lock.json exists"
|
||||||
|
read -p "Are you sure you want to run yarn? [y/N] " -n 1 -r
|
||||||
|
echo
|
||||||
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
||||||
|
command yarn "$@"
|
||||||
|
else
|
||||||
|
echo "Aborted"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
command yarn "$@"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
npm() {
|
||||||
|
if [[ -f "yarn.lock" ]]; then
|
||||||
|
echo "WARNING: yarn.lock exists"
|
||||||
|
read -p "Are you sure you want to run npm? [y/N] " -n 1 -r
|
||||||
|
echo
|
||||||
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
||||||
|
command npm "$@"
|
||||||
|
else
|
||||||
|
echo "Aborted"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
command npm "$@"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user