Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 379 Bytes

yarn-alias.md

File metadata and controls

26 lines (23 loc) · 379 Bytes

自定义运行快捷键

  1. 打开bash 或者 zsh 文件
vim ~/.zshrc"

在末尾添加

# yarn
alias yi="yarn init"
alias ya="yarn add"
alias yu="yarn ungrade"
alias yr="yarn remove"
alias ys="yarn serve"
alias yf="yarn feature"
  1. 使用 source 命令使之生效
source ~/.zshrc
  1. 进入项目目录,使用快捷方式
ys