Skip to content

Instantly share code, notes, and snippets.

@emmabostian
Created May 10, 2021 12:00
Show Gist options
  • Save emmabostian/6e296a1fd49e6095517c1ccc3adbb5b7 to your computer and use it in GitHub Desktop.
Save emmabostian/6e296a1fd49e6095517c1ccc3adbb5b7 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