Skip to content

Instantly share code, notes, and snippets.

@impressivewebs
Created May 17, 2021 16:14
Show Gist options
  • Save impressivewebs/a87b524c683dac76cdc9608e89c2849d to your computer and use it in GitHub Desktop.
Save impressivewebs/a87b524c683dac76cdc9608e89c2849d to your computer and use it in GitHub Desktop.
# Replace this
cd Desktop/my-folder/another-folder
yarn build:dev::my-really-cool-project:watch
# With this
runApp
# By creating an alias
# Open the .bashrc or .zshrc file
open -e . .zshrc
# Add this line to the bottom and restart your terminal
alias runApp='cd Desktop/my-folder/another-folder; yarn build:dev::my-really-cool-project:watch'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment