Created
May 10, 2021 12:00
-
-
Save emmabostian/6e296a1fd49e6095517c1ccc3adbb5b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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