mirror of
https://github.com/Lissy93/dotfiles.git
synced 2025-06-28 13:01:19 +02:00
🔗 Adds aliases for yarn
This commit is contained in:
parent
0b2230b468
commit
aad06758f8
@ -6,8 +6,9 @@ zsh_dir=${${ZDOTDIR}:-$HOME/.config/zsh}
|
|||||||
[[ $- != *i* ]] && return
|
[[ $- != *i* ]] && return
|
||||||
|
|
||||||
# Import alias files
|
# Import alias files
|
||||||
source ${zsh_dir}/aliases/git.zsh
|
|
||||||
source ${zsh_dir}/aliases/general.zsh
|
source ${zsh_dir}/aliases/general.zsh
|
||||||
|
source ${zsh_dir}/aliases/git.zsh
|
||||||
|
source ${zsh_dir}/aliases/yarn.zsh
|
||||||
|
|
||||||
# Setup Antigen bundle manager
|
# Setup Antigen bundle manager
|
||||||
source ${zsh_dir}/helpers/setup-antigen.zsh
|
source ${zsh_dir}/helpers/setup-antigen.zsh
|
||||||
|
9
zsh/aliases/yarn.zsh
Normal file
9
zsh/aliases/yarn.zsh
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
# Aliases for projects with a package.json
|
||||||
|
alias ys='yarn start'
|
||||||
|
alias yt='yarn test'
|
||||||
|
alias yb='yarn build'
|
||||||
|
alias yl='yarn lint'
|
||||||
|
alias yd='yarn dev'
|
||||||
|
alias yi='yarn install'
|
||||||
|
alias yr='yarn run'
|
Loading…
x
Reference in New Issue
Block a user