Add yarn build, yarn start and yarn test aliases

Typically used for https://github.com/facebookincubator/create-react-app

```json
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --env=jsdom",
```
This commit is contained in:
Josh Price 2018-01-22 15:06:00 +11:00 committed by GitHub
parent c3b072eace
commit 5f01aa4f60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,9 +2,12 @@
alias y="yarn " alias y="yarn "
alias ya="yarn add" alias ya="yarn add"
alias yb="yarn build"
alias ycc="yarn cache clean" alias ycc="yarn cache clean"
alias yh="yarn help" alias yh="yarn help"
alias yo="yarn outdated" alias yo="yarn outdated"
alias ys="yarn start"
alias yt="yarn test"
alias yui="yarn upgrade-interactive" alias yui="yarn upgrade-interactive"
_yarn () _yarn ()